Skip to content
This repository has been archived by the owner on Apr 7, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Sylvia Lei <[email protected]>
  • Loading branch information
Wwwsylvia committed Sep 25, 2023
1 parent c9181ba commit aafd9c7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion file_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.
package credentials

import (
credentials "oras.land/oras-go/v2/registry/remote/credentials"
"oras.land/oras-go/v2/registry/remote/credentials"
)

// FileStore implements a credentials store using the docker configuration file
Expand Down
2 changes: 1 addition & 1 deletion memory_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.
package credentials

import (
credentials "oras.land/oras-go/v2/registry/remote/credentials"
"oras.land/oras-go/v2/registry/remote/credentials"
)

// NewMemoryStore creates a new in-memory credentials store.
Expand Down
2 changes: 1 addition & 1 deletion native_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.
package credentials

import (
credentials "oras.land/oras-go/v2/registry/remote/credentials"
"oras.land/oras-go/v2/registry/remote/credentials"
)

// NewNativeStore creates a new native store that uses a remote helper program to
Expand Down
2 changes: 1 addition & 1 deletion registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

"oras.land/oras-go/v2/registry/remote"
"oras.land/oras-go/v2/registry/remote/auth"
credentials "oras.land/oras-go/v2/registry/remote/credentials"
"oras.land/oras-go/v2/registry/remote/credentials"
)

// ErrClientTypeUnsupported is thrown by Login() when the registry's client type
Expand Down
2 changes: 1 addition & 1 deletion store.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.
package credentials

import (
credentials "oras.land/oras-go/v2/registry/remote/credentials"
"oras.land/oras-go/v2/registry/remote/credentials"
)

// Store is the interface that any credentials store must implement.
Expand Down
2 changes: 1 addition & 1 deletion trace/trace.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ package trace
import (
"context"

trace "oras.land/oras-go/v2/registry/remote/credentials/trace"
"oras.land/oras-go/v2/registry/remote/credentials/trace"
)

// ExecutableTrace is a set of hooks used to trace the execution of binary
Expand Down

0 comments on commit aafd9c7

Please sign in to comment.