mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-09-18 01:06:40 +08:00
14 lines
201 B
Go
14 lines
201 B
Go
package middleware
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/net/ghttp"
|
|
)
|
|
|
|
// HomeAuth 前台页面鉴权中间件
|
|
func (s *sMiddleware) HomeAuth(r *ghttp.Request) {
|
|
// 鉴权
|
|
// ...
|
|
|
|
r.Middleware.Next()
|
|
}
|