mirror of
				https://github.com/beego/bee.git
				synced 2025-11-04 09:23:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			265 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			265 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package router
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/astaxie/beego"
 | 
						|
)
 | 
						|
 | 
						|
type Router struct {
 | 
						|
	beego.Controller
 | 
						|
}
 | 
						|
 | 
						|
func (this *Router) Get() {
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
func (this *Router) Post() {
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
type Controller struct {
 | 
						|
}
 | 
						|
 | 
						|
func (this *Controller) Put() {
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
func (this *Controller) Delete() {
 | 
						|
 | 
						|
}
 |