index.go 208 B

12345678910111213
  1. package front
  2. import (
  3. "gfast/library/response"
  4. "github.com/gogf/gf/net/ghttp"
  5. )
  6. type Index struct{}
  7. //前台首页
  8. func (c *Index) Index(r *ghttp.Request) {
  9. response.SusJson(true, r, "登录成功")
  10. }