openbrain/controllers/default.go

7 lines
98 B
Go
Raw Normal View History

2022-03-31 11:47:07 +08:00
package controllers
2022-03-31 15:26:51 +08:00
func (c *ApiController) GetPosts() {
2022-03-31 11:47:07 +08:00
c.Data["json"] = "OK"
c.ServeJSON()
}