glider/dev.go

18 lines
226 B
Go
Raw Normal View History

2018-07-21 22:56:37 +08:00
//+build dev
package main
import (
"net/http"
_ "net/http/pprof"
_ "github.com/nadoo/glider/proxy/ws"
// _ "github.com/nadoo/glider/proxy/tproxy"
2018-07-21 22:56:37 +08:00
)
func init() {
go func() {
http.ListenAndServe(":6060", nil)
}()
}