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
- Host: GitHub
- URL: https://github.com/kaneg/flaskgo
- Owner: kaneg
- License: apache-2.0
- Created: 2018-03-24T12:30:45.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-05-24T06:09:10.000Z (about 3 years ago)
- Last Synced: 2024-12-13T01:02:18.215Z (over 1 year ago)
- Topics: flask, goweb
- Language: Go
- Homepage:
- Size: 99.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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")
```