HelloServerWithGofr is the interface for the server implementation
| 29 | |
| 30 | // HelloServerWithGofr is the interface for the server implementation |
| 31 | type HelloServerWithGofr interface { |
| 32 | SayHello(*gofr.Context) (any, error) |
| 33 | } |
| 34 | |
| 35 | // HelloServerWrapper wraps the server and handles request and response logic |
| 36 | type HelloServerWrapper struct { |
no outgoing calls
no test coverage detected