package backend import ( "context" ) func NewApp() *App { return &App{} } func (a *App) Startup(ctx context.Context) { a.ctx = ctx a.loadSettings() }