1
0
mirror of https://github.com/astaxie/beego.git synced 2025-01-21 23:57:12 +00:00
Beego/doc.go
Ming Deng 650fde66aa Revert "Merge pull request #4254 from astaxie/develop-2.0"
This reverts commit e284b0ddae072311617a6fdd8393eb04aba873d2, reversing
changes made to 8ef8fd26068a7b70865acbabee89f6691ae553a9.
2020-11-26 17:48:29 +08:00

18 lines
480 B
Go

/*
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
import "github.com/astaxie/beego"
func main() {
beego.Run()
}
more information: http://beego.me
*/
package beego