This commit is contained in:
2025-12-27 02:50:16 +08:00
parent 9cf62f793b
commit e9ef58e6fa
138 changed files with 2288 additions and 174165 deletions

12
internal/logic/all.go Normal file
View File

@@ -0,0 +1,12 @@
package logic
import (
"github.com/gin-gonic/gin"
)
func All(c *gin.Context) {
data := gin.H{}
tplName := c.GetString("TplName")
c.HTML(200, tplName, data)
}