From 407049097d49fc0226aaaed3dae0f58bfec8e271 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Fri, 3 May 2024 12:46:53 -0400 Subject: [PATCH] Applications can return init errors --- application.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application.go b/application.go index 7712f0c..0395713 100644 --- a/application.go +++ b/application.go @@ -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.