2026-01-04 21:19:17 +08:00
|
|
|
package main
|
|
|
|
|
|
2026-01-05 00:40:09 +08:00
|
|
|
import (
|
|
|
|
|
"cellbot/internal/di"
|
|
|
|
|
|
|
|
|
|
"go.uber.org/fx"
|
|
|
|
|
)
|
2026-01-04 21:19:17 +08:00
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
|
app := NewApp()
|
|
|
|
|
app.Run()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// NewApp 创建应用实例
|
2026-01-05 00:40:09 +08:00
|
|
|
func NewApp() *fx.App {
|
2026-01-04 21:19:17 +08:00
|
|
|
return di.NewApp()
|
|
|
|
|
}
|