package app import ( "sirlab.de/go/knyt/engine" "sirlab.de/go/knyt/handler" ) type App struct { Mux *handler.AuthMux Eng *engine.Engine } func NewApp() *App { return &App{} }