craban/server/app/app.go

19 lines
295 B
Go
Raw Normal View History

2021-09-13 11:16:25 +01:00
package app
import (
"git.ctrlz.es/mgdelacroix/craban/model"
"git.ctrlz.es/mgdelacroix/craban/services/store"
)
type App struct {
config *model.Config
store *store.Store
}
func NewApp(config *model.Config, store *store.Store) *App {
return &App{
config: config,
store: store,
}
}