1234567891011121314151617 |
- package admin
- import (
- . "jy/router"
- qu "qfw/util"
- )
- var Se = qu.SimpleEncrypt{Key: "topnet@extract"}
- func init() {
- admin := Router.Group("/admin")
- admin.Use(AuthMiddleWare())
- {
- admin.Static("/res", "./web/res")
- }
- Router.LoadHTMLGlob("web/templates/admin/*")
- }
|