2024-10-25 09:21:06 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bbs/app/http"
|
2024-10-27 23:43:18 +08:00
|
|
|
"github.com/Superdanda/hade/app/console"
|
2024-10-25 09:21:06 +08:00
|
|
|
"github.com/Superdanda/hade/framework"
|
|
|
|
"github.com/Superdanda/hade/framework/provider/app"
|
|
|
|
"github.com/Superdanda/hade/framework/provider/cache"
|
|
|
|
"github.com/Superdanda/hade/framework/provider/config"
|
|
|
|
"github.com/Superdanda/hade/framework/provider/distributed"
|
|
|
|
"github.com/Superdanda/hade/framework/provider/env"
|
|
|
|
"github.com/Superdanda/hade/framework/provider/kernel"
|
|
|
|
"github.com/Superdanda/hade/framework/provider/log"
|
|
|
|
"github.com/Superdanda/hade/framework/provider/orm"
|
|
|
|
"github.com/Superdanda/hade/framework/provider/redis"
|
|
|
|
"github.com/Superdanda/hade/framework/provider/ssh"
|
2024-10-27 23:43:18 +08:00
|
|
|
"github.com/Superdanda/hade/framework/provider/type_register"
|
2024-10-25 09:21:06 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// 初始化服务容器
|
|
|
|
container := framework.NewHadeContainer()
|
|
|
|
// 绑定App服务提供者
|
|
|
|
container.Bind(&app.HadeAppProvider{})
|
|
|
|
// 后续初始化需要绑定的服务提供者...
|
|
|
|
container.Bind(&env.HadeEnvProvider{})
|
|
|
|
container.Bind(&distributed.LocalDistributedProvider{})
|
|
|
|
container.Bind(&config.HadeConfigProvider{})
|
|
|
|
//container.Bind(&id.HadeIDProvider{})
|
|
|
|
//container.Bind(&trace.HadeTraceProvider{})
|
|
|
|
container.Bind(&log.HadeLogServiceProvider{})
|
|
|
|
container.Bind(&orm.GormProvider{})
|
|
|
|
container.Bind(&redis.RedisProvider{})
|
|
|
|
container.Bind(&cache.HadeCacheProvider{})
|
|
|
|
container.Bind(&ssh.SSHProvider{})
|
2024-10-27 23:43:18 +08:00
|
|
|
container.Bind(&type_register.TypeRegisterProvider{})
|
2024-10-25 09:21:06 +08:00
|
|
|
|
|
|
|
// 将HTTP引擎初始化,并且作为服务提供者绑定到服务容器中
|
|
|
|
if engine, err := http.NewHttpEngine(container); err == nil {
|
|
|
|
container.Bind(&kernel.HadeKernelProvider{HttpEngine: engine})
|
|
|
|
}
|
|
|
|
|
|
|
|
// 运行root命令
|
|
|
|
console.RunCommand(container)
|
|
|
|
}
|