openvpn-web-ui/main.go

13 lines
196 B
Go
Raw Normal View History

2017-04-09 22:13:49 +03:00
package main
import (
"github.com/adamwalach/openvpn-web-ui/lib"
_ "github.com/adamwalach/openvpn-web-ui/routers"
"github.com/astaxie/beego"
)
func main() {
lib.AddFuncMaps()
beego.Run()
}