| 128 | var _ ServerStarter = SimpleServerOptions{} |
| 129 | |
| 130 | type connManager struct { |
| 131 | mu sync.Mutex |
| 132 | conns map[uuid.UUID]net.Conn |
| 133 | } |
| 134 | |
| 135 | func (c *connManager) Add(id uuid.UUID, conn net.Conn) func() { |
| 136 | c.mu.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected