You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 rivejä
183 B
10 rivejä
183 B
package routers
|
|
|
|
import (
|
|
"beeblog/controllers"
|
|
beego "github.com/beego/beego/v2/server/web"
|
|
)
|
|
|
|
func init() {
|
|
beego.Router("/api/cats", &controllers.CatController{}, "get:List")
|
|
}
|
|
|