项目作者: kaneg

项目描述 :
Go web framework inspired by Python Flask
高级语言: Go
项目地址: git://github.com/kaneg/flaskgo.git
创建时间: 2018-03-24T12:30:45Z
项目社区:https://github.com/kaneg/flaskgo

开源协议:Apache License 2.0

下载


FlaskGo - Go web framework inspired by Python Flask

Usage

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