Documentation ¶ Index ¶ type App func (b *App) Main(ctx context.Context, root string, args []string) error func (b *App) ScopedPlugins() []plugins.Plugin type Initer Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type App ¶ type App struct { Plugger plugins.PluginScoper BuildTime string BuildVersion string Fallthrough func(ctx context.Context, root string, args []string) error OriginalMain func() } func (*App) Main ¶ func (b *App) Main(ctx context.Context, root string, args []string) error func (*App) ScopedPlugins ¶ func (b *App) ScopedPlugins() []plugins.Plugin type Initer ¶ type Initer interface { plugins.Plugin BuiltInit(ctx context.Context, root string, args []string) error } Initer is invoked in when an application binary built with `buffalo build` is executed. This hook is executed before any flags are parsed or sub-commands are run. Source Files ¶ View all Source files app.goifaces.go Click to show internal directories. Click to hide internal directories.