Move pkg/hasher to internal/hasher

Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
Derek McGowan 2024-01-17 09:56:52 -08:00
parent 23914a01b8
commit 5e1d9543be
No known key found for this signature in database
GPG Key ID: F58C5D0A4405ACDB
3 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ import (
"os"
"github.com/containerd/containerd/v2/cmd/containerd/command"
"github.com/containerd/containerd/v2/pkg/hasher"
"github.com/containerd/containerd/v2/internal/hasher"
"github.com/containerd/containerd/v2/pkg/seed" //nolint:staticcheck // Global math/rand seed is deprecated, but still used by external dependencies
_ "github.com/containerd/containerd/v2/cmd/containerd/builtins"

View File

@ -22,7 +22,7 @@ import (
"os"
"github.com/containerd/containerd/v2/cmd/ctr/app"
"github.com/containerd/containerd/v2/pkg/hasher"
"github.com/containerd/containerd/v2/internal/hasher"
"github.com/containerd/containerd/v2/pkg/seed" //nolint:staticcheck // Global math/rand seed is deprecated, but still used by external dependencies
"github.com/urfave/cli"
)