GRPCExpr contains the API level gRPC specific expressions.
| 3 | type ( |
| 4 | // GRPCExpr contains the API level gRPC specific expressions. |
| 5 | GRPCExpr struct { |
| 6 | // Services contains the gRPC services created by the DSL. |
| 7 | Services []*GRPCServiceExpr |
| 8 | // Errors lists the error gRPC error responses defined globally. |
| 9 | Errors []*GRPCErrorExpr |
| 10 | } |
| 11 | ) |
| 12 | |
| 13 | // Service returns the service with the given name if any. |
nothing calls this directly
no outgoing calls
no test coverage detected