Beego/pkg/doc.go

18 lines
484 B
Go
Raw Normal View History

2020-07-22 14:50:08 +00:00
/*
Package beego provide a MVC framework
beego: an open-source, high-performance, modular, full-stack web framework
It is used for rapid development of RESTful APIs, web apps and backend services in Go.
beego is inspired by Tornado, Sinatra and Flask with the added benefit of some Go-specific features such as interfaces and struct embedding.
package main
2020-07-29 13:56:19 +00:00
import "github.com/astaxie/beego/pkg"
2020-07-22 14:50:08 +00:00
func main() {
beego.Run()
}
more information: http://beego.me
*/
package beego