MCPcopy
hub / github.com/google/ax / Server

Struct Server

internal/server/server.go:38–46  ·  view source on GitHub ↗

Server implements the AXService gRPC service.

Source from the content-addressed store, hash-verified

36
37// Server implements the AXService gRPC service.
38type 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.
49func New(c *controller.Controller) *Server {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected