Skip to content

kaneg/flaskgo

Repository files navigation

FlaskGo - Go web framework inspired by Python Flask

Usage

var app = flaskgo.CreateApp()
app.AddRoute("/index", func() string { return "This is Index page" })
app.AddRoute("/indexDyna1/<int:id>/<path:path>", func(id int, path string) string { return "abc" })
app.Run(":8080")

About

Go web framework inspired by Python Flask

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages