This commit is contained in:
2026-01-18 18:20:40 +08:00
commit 20ed44aa74
178 changed files with 13789 additions and 0 deletions

16
Backend/main.go Normal file
View File

@@ -0,0 +1,16 @@
package main
import (
_ "leke/internal/packed"
_ "leke/internal/logic"
"leke/internal/cmd"
_ "github.com/gogf/gf/contrib/drivers/mysql/v2"
"github.com/gogf/gf/v2/os/gctx"
)
func main() {
cmd.Main.Run(gctx.GetInitCtx())
}