knowyt/server/app/app.go

16 lines
183 B
Go
Raw Normal View History

2021-07-31 07:55:43 +00:00
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{}
}