From 1ebd091aa9b2a953023504e960bcf67742f2edc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederik=20Jerl=C3=B8v?= Date: Mon, 28 Oct 2024 12:37:35 +0100 Subject: [PATCH] Add command actions export-all --- cmd/humioctl/actions.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/humioctl/actions.go b/cmd/humioctl/actions.go index c0f7b78c..21d73c2d 100644 --- a/cmd/humioctl/actions.go +++ b/cmd/humioctl/actions.go @@ -29,6 +29,7 @@ func newActionsCmd() *cobra.Command { cmd.AddCommand(newActionsRemoveCmd()) cmd.AddCommand(newActionsInstallCmd()) cmd.AddCommand(newActionsExportCmd()) + cmd.AddCommand(newActionsExportAllCmd()) return cmd }