(hijackPath string)
| 94 | var _ http.Handler = new(Server) |
| 95 | |
| 96 | func NewServer(hijackPath string) *Server { |
| 97 | return &Server{HijackPath: hijackPath} |
| 98 | } |
| 99 | |
| 100 | func (s *Server) add(conn *websocket.Conn) { |
| 101 | s.mu.Lock() |
no outgoing calls
no test coverage detected