mirror of
https://github.com/PengZhangs2017582/novel.git
synced 2025-06-16 15:31:22 +08:00
20 lines
275 B
Go
20 lines
275 B
Go
package main
|
|
|
|
import (
|
|
_ "novel/internal/packed"
|
|
|
|
// _ "novel/internal/logic/logic.go"
|
|
|
|
_ "novel/internal/logic"
|
|
|
|
"github.com/gogf/gf/v2/os/gctx"
|
|
|
|
"novel/internal/cmd"
|
|
|
|
_ "github.com/gogf/gf/contrib/drivers/mysql/v2"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Main.Run(gctx.GetInitCtx())
|
|
}
|