mirror of
https://github.com/adamwalach/openvpn-web-ui.git
synced 2024-11-26 11:44:36 +03:00
13 lines
196 B
Go
13 lines
196 B
Go
|
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()
|
||
|
}
|