github.com/astaxie/beego@v1.12.3/doc.go (about)

     1  /*
     2  Package beego provide a MVC framework
     3  beego: an open-source, high-performance, modular, full-stack web framework
     4  
     5  It is used for rapid development of RESTful APIs, web apps and backend services in Go.
     6  beego is inspired by Tornado, Sinatra and Flask with the added benefit of some Go-specific features such as interfaces and struct embedding.
     7  
     8  	package main
     9  	import "github.com/astaxie/beego"
    10  
    11  	func main() {
    12  	 beego.Run()
    13  	}
    14  
    15  more information: http://beego.me
    16  */
    17  package beego