framework1/main.go

59 lines
1.5 KiB
Go
Raw Normal View History

2024-10-16 16:53:09 +08:00
package main
import (
2024-10-19 22:02:19 +08:00
"github.com/Superdanda/hade/app/console"
"github.com/Superdanda/hade/app/http"
"github.com/Superdanda/hade/framework"
"github.com/Superdanda/hade/framework/provider/app"
"github.com/Superdanda/hade/framework/provider/kernel"
2024-10-16 16:53:09 +08:00
)
2024-10-19 22:02:19 +08:00
//func main() {
//core := gin.New()
//
//core.Use(middleware2.Recovery())
//core.Use(middleware2.Cost())
//
//core.Bind(&demo.DemoServiceProvider{})
//core.Bind(&app.HadeAppProvider{
// BaseFolder: "/tmp",
//})
//module.Routes(core)
//server := &http.Server{
// Handler: core,
// Addr: ":8888",
//}
//go func() {
// server.ListenAndServe()
//}()
//
//// 当前的 Goroutine 等待信号量
//quit := make(chan os.Signal)
//// 监控信号SIGINT, SIGTERM, SIGQUIT
//signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT)
//// 这里会阻塞当前goroutine等待信号
//<-quit
//
//// 调用Server.Shutdown graceful结束
//timeoutCtx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
//defer cancel()
//
//if err := server.Shutdown(timeoutCtx); err != nil {
// log.Fatal("Server Shutdown:", err)
//}
//}
2024-10-18 14:41:55 +08:00
2024-10-19 22:02:19 +08:00
func main() {
// 初始化服务容器
container := framework.NewHadeContainer()
// 绑定App服务提供者
container.Bind(&app.HadeAppProvider{})
// 后续初始化需要绑定的服务提供者...
// 将HTTP引擎初始化,并且作为服务提供者绑定到服务容器中
if engine, err := http.NewHttpEngine(); err == nil {
container.Bind(&kernel.HadeKernelProvider{HttpEngine: engine})
2024-10-18 14:41:55 +08:00
}
2024-10-19 22:02:19 +08:00
console.RunCommand(container)
2024-10-16 16:53:09 +08:00
}