func RegisterOperationContainerServer()

in api/v1/operationcontainer_grpc.pb.go [121:130]


func RegisterOperationContainerServer(s grpc.ServiceRegistrar, srv OperationContainerServer) {
	// If the following call pancis, it indicates UnimplementedOperationContainerServer was
	// embedded by pointer and is nil.  This will cause panics if an
	// unimplemented method is ever invoked, so we test this at initialization
	// time to prevent it from happening at runtime later due to I/O.
	if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
		t.testEmbeddedByValue()
	}
	s.RegisterService(&OperationContainer_ServiceDesc, srv)
}