Documentation ¶ Index ¶ type App func NewApp() *App func (a *App) AddEntity(entity any) *App func (a *App) Entities() []any func (a *App) RegisterMiddleware(m http.MiddlewareFunc) *App func (a *App) Run() func (a *App) UseDB(adapter db.DBAdapter) *App func (a *App) UseHTTP(engine http.HTTPEngine) *App Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type App ¶ type App struct { // contains filtered or unexported fields } func NewApp ¶ func NewApp() *App NewApp creates a new app instance func (*App) AddEntity ¶ func (a *App) AddEntity(entity any) *App func (*App) Entities ¶ func (a *App) Entities() []any func (*App) RegisterMiddleware ¶ func (a *App) RegisterMiddleware(m http.MiddlewareFunc) *App func (*App) Run ¶ func (a *App) Run() func (*App) UseDB ¶ func (a *App) UseDB(adapter db.DBAdapter) *App func (*App) UseHTTP ¶ func (a *App) UseHTTP(engine http.HTTPEngine) *App Source Files ¶ View all Source files app.go Click to show internal directories. Click to hide internal directories.