dev
This commit is contained in:
12
internal/logic/all.go
Normal file
12
internal/logic/all.go
Normal 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)
|
||||
}
|
||||
Reference in New Issue
Block a user