package main import ( "context" digitalhuman "digital-human/digitalhuman/router" _ "gitea.com/red-future/common/config" "gitea.com/red-future/common/jaeger" _ "gitea.com/red-future/common/ragflow" _ "github.com/gogf/gf/contrib/drivers/pgsql/v2" _ "github.com/gogf/gf/contrib/nosql/redis/v2" ) func main() { ctx := context.Background() defer jaeger.ShutDown(ctx) // 注册路由 digitalhuman.Router() // 保持应用运行 select {} }