package api import ( "git.ctrlz.es/mgdelacroix/craban/app" ) type API struct { App *app.App } func NewAPI(app *app.App) *API { return &API{App: app} }