knowyt/server/app/app.go
2021-07-31 09:55:43 +02:00

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{}
}