mirror of
https://github.com/astaxie/beego.git
synced 2024-11-04 21:10:54 +00:00
18 lines
442 B
Go
18 lines
442 B
Go
|
/*
|
||
|
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 infomation: http://beego.me
|
||
|
*/
|
||
|
package beego
|
||
|
|