| 23 | ) |
| 24 | |
| 25 | type Server interface { |
| 26 | Serve(c context.Context, conn network.Conn) error |
| 27 | } |
| 28 | |
| 29 | type StreamServer interface { |
| 30 | Serve(c context.Context, conn network.StreamConn) error |
no outgoing calls
no test coverage detected
searching dependent graphs…