chore: fix module imports

This commit is contained in:
Steve Moyer
2024-09-09 09:27:04 -04:00
parent ab4018d218
commit 1525aaa139
10 changed files with 30 additions and 30 deletions

View File

@@ -11,8 +11,8 @@ import (
"github.com/ipld/go-ipld-prime/schema"
crypto "github.com/libp2p/go-libp2p/core/crypto"
"github.com/libp2p/go-libp2p/core/crypto/pb"
"github.com/ucan-wg/go-ucan/v1/internal/token"
"github.com/ucan-wg/go-ucan/v1/internal/varsig"
"github.com/ucan-wg/go-ucan/internal/token"
"github.com/ucan-wg/go-ucan/internal/varsig"
)
// Tokener represents a type that can be wrapped in a UCAN Envelope.

View File

@@ -16,9 +16,9 @@ import (
"github.com/libp2p/go-libp2p/core/crypto"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/ucan-wg/go-ucan/v1/did"
"github.com/ucan-wg/go-ucan/v1/internal/envelope"
"github.com/ucan-wg/go-ucan/v1/internal/token"
"github.com/ucan-wg/go-ucan/did"
"github.com/ucan-wg/go-ucan/internal/envelope"
"github.com/ucan-wg/go-ucan/internal/token"
"gotest.tools/v3/golden"
)

View File

@@ -7,9 +7,9 @@ import (
"github.com/ipld/go-ipld-prime/datamodel"
"github.com/ipld/go-ipld-prime/node/bindnode"
"github.com/ucan-wg/go-ucan/v1/capability/command"
"github.com/ucan-wg/go-ucan/v1/capability/policy"
"github.com/ucan-wg/go-ucan/v1/did"
"github.com/ucan-wg/go-ucan/capability/command"
"github.com/ucan-wg/go-ucan/capability/policy"
"github.com/ucan-wg/go-ucan/did"
)
func BindnodeOptions() []bindnode.Option {