Files
gfast/app/controller/front/index.go
T
2020-07-14 10:50:11 +08:00

14 lines
208 B
Go

package front
import (
"gfast/library/response"
"github.com/gogf/gf/net/ghttp"
)
type Index struct{}
//前台首页
func (c *Index) Index(r *ghttp.Request) {
response.SusJson(true, r, "登录成功")
}