码农笔录博客源码
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.

12 line
264 B

6 年之前
package routers
import (
"beeblog/controllers"
"github.com/astaxie/beego"
)
func init() {
6 年之前
beego.Router("/api/like/:id([0-9]+)", &controllers.LikeController{}, "get:Save")
beego.Router("/api/unlike/:id([0-9]+)", &controllers.LikeController{}, "get:Delete")
6 年之前
}