1
0

doc.go 480 B

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