Initial commit

This commit is contained in:
Khanh Ngo 2020-04-18 16:17:49 +07:00
commit 6cb8527c35
12 changed files with 741 additions and 0 deletions

16
main.go Normal file
View file

@ -0,0 +1,16 @@
package main
import (
"github.com/ngoduykhanh/wireguard-ui/handler"
"github.com/ngoduykhanh/wireguard-ui/router"
)
func main() {
app := router.New()
app.GET("/", handler.Home())
app.POST("/new-client", handler.NewClient())
app.POST("/remove-client", handler.RemoveClient())
app.Logger.Fatal(app.Start("127.0.0.1:5000"))
}