astaxie / beego
- воскресенье, 1 сентября 2019 г. в 00:23:05
Go
beego is an open-source, high-performance web framework for the Go programming language.
beego is used for rapid development of RESTful APIs, web apps and backend services in Go. It is inspired by Tornado, Sinatra and Flask. beego has some Go-specific features such as interfaces and struct embedding.
go get github.com/astaxie/beego
hello.gopackage main
import "github.com/astaxie/beego"
func main(){
beego.Run()
}go build hello.go
./hello
Congratulations! You've just built your first beego app.
beego source code is licensed under the Apache Licence, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html).