diff --git a/go/cmd/dolt/commands/admin/storage.go b/go/cmd/dolt/commands/admin/storage.go index 74bfe5f6a4..0bd06003ca 100644 --- a/go/cmd/dolt/commands/admin/storage.go +++ b/go/cmd/dolt/commands/admin/storage.go @@ -17,9 +17,10 @@ package admin import ( "context" "fmt" - "github.com/dolthub/dolt/go/libraries/utils/config" "strconv" + "github.com/dolthub/dolt/go/libraries/utils/config" + "github.com/dolthub/dolt/go/cmd/dolt/cli" "github.com/dolthub/dolt/go/libraries/doltcore/env" "github.com/dolthub/dolt/go/libraries/utils/argparser" diff --git a/go/store/nbs/archive_reader.go b/go/store/nbs/archive_reader.go index 63ff0aa11c..e5a3124464 100644 --- a/go/store/nbs/archive_reader.go +++ b/go/store/nbs/archive_reader.go @@ -21,13 +21,14 @@ import ( "encoding/json" "errors" "fmt" - "github.com/dolthub/dolt/go/libraries/doltcore/dconfig" - "github.com/dolthub/gozstd" - lru "github.com/hashicorp/golang-lru/v2" "io" "math/bits" "os" + "github.com/dolthub/gozstd" + lru "github.com/hashicorp/golang-lru/v2" + + "github.com/dolthub/dolt/go/libraries/doltcore/dconfig" "github.com/dolthub/dolt/go/store/chunks" "github.com/dolthub/dolt/go/store/hash" )