Server implements HTTPServer. HTTPServer is a generated interface that gRPC servers must implement.
| 61 | // Server implements HTTPServer. HTTPServer is a generated interface that gRPC |
| 62 | // servers must implement. |
| 63 | type Server struct { |
| 64 | handler http.Handler |
| 65 | return4XXErrors bool |
| 66 | } |
| 67 | |
| 68 | // NewServer makes a new Server. |
| 69 | func NewServer(handler http.Handler, opts ...Option) *Server { |
nothing calls this directly
no outgoing calls
no test coverage detected