package main import "cellbot/internal/di" func main() { app := NewApp() app.Run() } // NewApp 创建应用实例 func NewApp() *di.App { return di.NewApp() }