12 lines
143 B
Go
12 lines
143 B
Go
|
package server
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gorilla/websocket"
|
||
|
)
|
||
|
|
||
|
func (s *Server) HandleAgent(c *websocket.Conn, r *http.Request) {
|
||
|
|
||
|
}
|