Server implements the AXService gRPC service.
| 36 | |
| 37 | // Server implements the AXService gRPC service. |
| 38 | type Server struct { |
| 39 | proto.UnimplementedControllerServiceServer |
| 40 | proto.UnimplementedConversationServiceServer |
| 41 | |
| 42 | controller *controller.Controller |
| 43 | grpcServer *grpc.Server |
| 44 | inFlight map[string]struct{} |
| 45 | inFlightMu sync.Mutex |
| 46 | } |
| 47 | |
| 48 | // New creates a new controller server. |
| 49 | func New(c *controller.Controller) *Server { |
nothing calls this directly
no outgoing calls
no test coverage detected