protoServer is a wrapper that translates the dRPC protocol into a Session with method calls into the Server.
| 21 | |
| 22 | // protoServer is a wrapper that translates the dRPC protocol into a Session with method calls into the Server. |
| 23 | type protoServer struct { |
| 24 | server Server |
| 25 | opts ServeOptions |
| 26 | } |
| 27 | |
| 28 | func (p *protoServer) Session(stream proto.DRPCProvisioner_SessionStream) error { |
| 29 | sessID := uuid.New().String() |
nothing calls this directly
no outgoing calls
no test coverage detected