hodu/server-ctl.go

14 lines
244 B
Go
Raw Normal View History

package hodu
import "net/http"
type server_ctl_client_conns struct {
s *Server
}
// ------------------------------------
func (ctl *server_ctl_client_conns) ServeHTTP(w http.ResponseWriter, req *http.Request) {
w.Write([]byte("hello"))
}