2025-04-09 14:47:04 +08:00

15 lines
322 B
Go

package handler
import (
"github.com/gofiber/fiber/v2"
)
// Home 主页处理函数
func Home(c *fiber.Ctx) error {
// 未登录用户显示官网页面
return c.Render("home/index", fiber.Map{
"Title": "微信机器人管理系统",
"NoLayout": true, // 使用特殊的官网布局,而非后台布局
})
}