Fix return values of default App method

This commit is contained in:
Lea Anthony
2021-01-01 12:37:52 +11:00
parent 5ca57e446a
commit f7db0b7373

View File

@@ -25,8 +25,8 @@ type App struct {
}
// CreateApp returns a null application
func CreateApp(_ *options.App) *App {
return &App{}
func CreateApp(_ *options.App) (*App, error) {
return &App{}, nil
}
// Run the application