2026年2月20日

This commit is contained in:
2026-02-20 11:12:41 +08:00
parent 8155bd710b
commit 958bb6e88e
6 changed files with 36 additions and 16 deletions

View File

@@ -1,18 +1,24 @@
package admin
import "github.com/gin-gonic/gin"
import (
"github.com/gin-gonic/gin"
)
// IndexController 索引控制器
type IndexController struct {
}
// Index 首页方法
func (con IndexController) Index(c *gin.Context) {
c.String(200, "管理员用户列表")
}
// Plist 详情页方法
func (con IndexController) Plist(c *gin.Context) {
c.String(200, "管理员用户详情")
}
// Login 登录页方法
func (con IndexController) Login(c *gin.Context) {
c.String(200, "管理员登录页面")
}