nps/main.go

11 lines
130 B
Go
Raw Normal View History

2018-11-04 15:19:22 +00:00
package main
import (
2018-12-11 08:37:12 +00:00
"github.com/cnlh/easyProxy/lib"
_ "github.com/cnlh/easyProxy/routers"
2018-11-04 15:19:22 +00:00
)
func main() {
2018-12-11 08:37:12 +00:00
lib.InitMode()
2018-11-04 15:19:22 +00:00
}