mirror of
https://github.com/tiger1103/gfast.git
synced 2026-09-21 10:12:59 +00:00
14 lines
208 B
Go
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, "登录成功")
|
|
}
|