From 39c47446c9dbfac84a99809eb6269af416782ca2 Mon Sep 17 00:00:00 2001 From: Jan Tytgat Date: Tue, 3 Jun 2025 13:36:43 +0200 Subject: [PATCH] Config SubCommands is []Commander Signed-off-by: Jan Tytgat --- application/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/config.go b/application/config.go index a184ab0..752611c 100644 --- a/application/config.go +++ b/application/config.go @@ -24,7 +24,7 @@ type Config struct { PersistentPostRunE []func(cmd *cobra.Command, args []string) error // collection of PostRunE functions ShutdownSignals []os.Signal ShutdownTimeout time.Duration - SubCommands []Command + SubCommands []Commander SubCommandInitializeFunc func(cmd *cobra.Command) ValidArgs []string }