16 lines
183 B
Go
16 lines
183 B
Go
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{}
|
|
}
|