2026-03-18 10:19:42 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
2026-06-10 15:37:11 +08:00
|
|
|
_ "gitea.redpowerfuture.com/red-future/common/http"
|
2026-03-18 10:19:42 +08:00
|
|
|
_ "github.com/gogf/gf/contrib/drivers/pgsql/v2"
|
|
|
|
|
_ "github.com/gogf/gf/contrib/nosql/redis/v2"
|
|
|
|
|
"github.com/gogf/gf/v2/os/gctx"
|
|
|
|
|
_ "github.com/tiger1103/gfast/v3/internal/app/boot"
|
|
|
|
|
_ "github.com/tiger1103/gfast/v3/internal/app/system/packed"
|
|
|
|
|
"github.com/tiger1103/gfast/v3/internal/cmd"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
|
ctx := gctx.New()
|
|
|
|
|
cmd.Main.Run(ctx)
|
|
|
|
|
}
|