nps/main.go

11 lines
130 B
Go
Raw Normal View History

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