Skip to content

Commit

Permalink
Changed app.Start to app.Run (#1)
Browse files Browse the repository at this point in the history
Signed-off-by: Juraci Paixão Kröhling <juraci@kroehling.de>
  • Loading branch information
jpkrohling authored Oct 2, 2020
1 parent 9327477 commit 3cd3923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/scaffold/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func main() {
log.Fatal("failed to construct the application: %w", err)
}
err = app.Start()
err = app.Run()
if err != nil {
log.Fatal("application run finished with error: %w", err)
}
Expand Down

0 comments on commit 3cd3923

Please sign in to comment.