RegistrationServer provides a handler interface for a client to provide methods to handle the different types of requests that can be communicated by the stream.
| 10 | // RegistrationServer provides a handler interface for a client to provide methods to handle the different types of |
| 11 | // requests that can be communicated by the stream. |
| 12 | type RegistrationServer struct { |
| 13 | registrationServer pogs.RegistrationServer |
| 14 | } |
| 15 | |
| 16 | func NewRegistrationServer(registrationServer pogs.RegistrationServer) *RegistrationServer { |
| 17 | return &RegistrationServer{ |
nothing calls this directly
no outgoing calls
no test coverage detected