Applications can return init errors

This commit is contained in:
Sasha Koshka 2024-05-03 12:46:53 -04:00
parent 7c7d93d6d1
commit 407049097d
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ type Application interface {
Describe () ApplicationDescription
// Init performs the initial setup of the application.
Init ()
Init () error
}
// ApplicationDescription describes the name and type of an application.