| 24 | } |
| 25 | |
| 26 | type tcpServer struct { |
| 27 | addr string |
| 28 | listener net.Listener |
| 29 | wg sync.WaitGroup |
| 30 | ctx context.Context |
| 31 | cancel context.CancelFunc |
| 32 | } |
| 33 | |
| 34 | func (t *tcpServer) Run() error { |
| 35 | var err error |
nothing calls this directly
no outgoing calls
no test coverage detected