From 2fe79ee511bc070b5adcb88f6c36c01ae27a6b8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= Date: Tue, 19 Nov 2024 17:31:27 +0000 Subject: [PATCH] incusd: Fix import ordering MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber --- cmd/incusd/main_callhook.go | 3 ++- cmd/incusd/main_shutdown.go | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/cmd/incusd/main_callhook.go b/cmd/incusd/main_callhook.go index b5954ae286..012b4cfd63 100644 --- a/cmd/incusd/main_callhook.go +++ b/cmd/incusd/main_callhook.go @@ -7,8 +7,9 @@ import ( "path/filepath" "time" - incus "github.com/lxc/incus/v6/client" "github.com/spf13/cobra" + + incus "github.com/lxc/incus/v6/client" ) type cmdCallhook struct { diff --git a/cmd/incusd/main_shutdown.go b/cmd/incusd/main_shutdown.go index a499e90ab8..951bb7c939 100644 --- a/cmd/incusd/main_shutdown.go +++ b/cmd/incusd/main_shutdown.go @@ -7,8 +7,9 @@ import ( "strconv" "time" - incus "github.com/lxc/incus/v6/client" "github.com/spf13/cobra" + + incus "github.com/lxc/incus/v6/client" ) type cmdShutdown struct {