mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-23 02:40:23 +08:00
25 lines
569 B
Go
25 lines
569 B
Go
// Package main
|
|
// @Link https://github.com/bufanyun/hotgo
|
|
// @Copyright Copyright (c) 2023 HotGo CLI
|
|
// @Author Ms <133814250@qq.com>
|
|
// @License https://github.com/bufanyun/hotgo/blob/master/LICENSE
|
|
package main
|
|
|
|
import (
|
|
_ "hotgo/internal/packed"
|
|
|
|
_ "github.com/gogf/gf/contrib/drivers/mysql/v2"
|
|
_ "github.com/gogf/gf/contrib/nosql/redis/v2"
|
|
"github.com/gogf/gf/v2/os/gctx"
|
|
_ "hotgo/addons/modules"
|
|
"hotgo/internal/cmd"
|
|
"hotgo/internal/global"
|
|
_ "hotgo/internal/logic"
|
|
)
|
|
|
|
func main() {
|
|
var ctx = gctx.GetInitCtx()
|
|
global.Init(ctx)
|
|
cmd.Main.Run(ctx)
|
|
}
|