mirror of
https://github.com/nadoo/glider.git
synced 2025-02-23 17:35:40 +08:00
18 lines
226 B
Go
18 lines
226 B
Go
//+build dev
|
|
|
|
package main
|
|
|
|
import (
|
|
"net/http"
|
|
_ "net/http/pprof"
|
|
|
|
_ "github.com/nadoo/glider/proxy/ws"
|
|
// _ "github.com/nadoo/glider/proxy/tproxy"
|
|
)
|
|
|
|
func init() {
|
|
go func() {
|
|
http.ListenAndServe(":6060", nil)
|
|
}()
|
|
}
|