mirror of
https://github.com/astaxie/beego.git
synced 2024-10-31 23:10:56 +00:00
18 lines
480 B
Go
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
|