From ab44152c540fbfc11f0f50638b9a18ebfaa04656 Mon Sep 17 00:00:00 2001 From: Silvio Moioli Date: Thu, 16 Jan 2025 09:23:53 +0100 Subject: [PATCH] fix goimports Signed-off-by: Silvio Moioli --- pkg/sqlcache/db/client.go | 1 + pkg/sqlcache/store/store.go | 1 + 2 files changed, 2 insertions(+) diff --git a/pkg/sqlcache/db/client.go b/pkg/sqlcache/db/client.go index 3d29ca05..62d81c3f 100644 --- a/pkg/sqlcache/db/client.go +++ b/pkg/sqlcache/db/client.go @@ -17,6 +17,7 @@ import ( "github.com/pkg/errors" "github.com/rancher/steve/pkg/sqlcache/db/transaction" + // needed for drivers _ "modernc.org/sqlite" ) diff --git a/pkg/sqlcache/store/store.go b/pkg/sqlcache/store/store.go index 45e59d36..3f8c273d 100644 --- a/pkg/sqlcache/store/store.go +++ b/pkg/sqlcache/store/store.go @@ -13,6 +13,7 @@ import ( "github.com/rancher/steve/pkg/sqlcache/db" "github.com/rancher/steve/pkg/sqlcache/db/transaction" "k8s.io/client-go/tools/cache" + // needed for drivers _ "modernc.org/sqlite" )