15 lines
157 B
Go
15 lines
157 B
Go
package backend
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func NewApp() *App {
|
|
return &App{}
|
|
}
|
|
|
|
func (a *App) Startup(ctx context.Context) {
|
|
a.ctx = ctx
|
|
a.loadSettings()
|
|
}
|