thinkgo:用Go(Golang)编写的轻量级MVC框架 源码
ThinkGo ThinkGo是用Go(Golang)编写的轻量级MVC框架。 安装 唯一的要求是 go get -u github.com/forgoer/thinkgo 快速开始 package main import ( "fmt" "github.com/forgoer/thinkgo" "github.com/forgoer/thinkgo/think" ) func main () { th := thinkgo . New () th . RegisterRoute ( func ( route * think. Route ) { route . Get
用户评论