| | 1 | |
|
| | 2 | | // AUTOGENERATED, DO NOT EDIT |
| | 3 | | // Type definitions for server implementations of ports. |
| | 4 | | // package: decentraland.bff |
| | 5 | | // file: decentraland/bff/http_endpoints.proto |
| | 6 | | using Cysharp.Threading.Tasks; |
| | 7 | | using rpc_csharp; |
| | 8 | | using Google.Protobuf.WellKnownTypes; |
| | 9 | |
|
| | 10 | | namespace Decentraland.Bff { |
| | 11 | | public class ClientHttpEndpoints |
| | 12 | | { |
| | 13 | | private readonly RpcClientModule module; |
| | 14 | |
|
| 0 | 15 | | public ClientHttpEndpoints(RpcClientModule module) |
| | 16 | | { |
| 0 | 17 | | this.module = module; |
| 0 | 18 | | } |
| | 19 | |
|
| | 20 | | public UniTask<AboutResponse> About(Empty request) |
| | 21 | | { |
| 0 | 22 | | return module.CallUnaryProcedure<AboutResponse>("About", request); |
| | 23 | | } |
| | 24 | | } |
| | 25 | | } |