An open API service indexing awesome lists of open source software.

https://github.com/kaneg/flaskgo

Go web framework inspired by Python Flask
https://github.com/kaneg/flaskgo

flask goweb

Last synced: 5 months ago
JSON representation

Go web framework inspired by Python Flask

Awesome Lists containing this project

README

          

# FlaskGo - Go web framework inspired by Python Flask

# Usage

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