mirror of
https://github.com/astaxie/beego.git
synced 2024-11-04 21:00:55 +00:00
21 lines
471 B
Go
21 lines
471 B
Go
package main
|
|
|
|
import (
|
|
"github.com/astaxie/beego"
|
|
"github.com/astaxie/beego/example/beeapi/controllers"
|
|
)
|
|
|
|
// Objects
|
|
|
|
// URL HTTP Verb Functionality
|
|
// /object POST Creating Objects
|
|
// /object/<objectId> GET Retrieving Objects
|
|
// /object/<objectId> PUT Updating Objects
|
|
// /object GET Queries
|
|
// /object/<objectId> DELETE Deleting Objects
|
|
|
|
func main() {
|
|
beego.RESTRouter("/object", &controllers.ObejctController{})
|
|
beego.Run()
|
|
}
|