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
 |