This commit is contained in:
zyj
2025-09-13 10:22:49 +08:00
commit 002419a7ed
28 changed files with 1888 additions and 0 deletions

14
router/index.go Normal file
View File

@@ -0,0 +1,14 @@
package router
import (
"github.com/gin-gonic/gin"
)
var task Task
type Router struct {
}
func Init(app *gin.Engine) {
task.TaskRouterInit(app)
}