From f14792ff1c639d2ce2abf4421746ab34cc5c5ff3 Mon Sep 17 00:00:00 2001 From: Justin Johnson Date: Tue, 8 Mar 2022 09:06:48 -0600 Subject: [PATCH] chore: Change module references to github.com/ucan-wg/go-ucan --- example_test.go | 2 +- go.mod | 2 +- spec/token_source.go | 2 +- spec/token_store.go | 2 +- token.go | 2 +- token_test.go | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/example_test.go b/example_test.go index bf4796a..ab16860 100644 --- a/example_test.go +++ b/example_test.go @@ -5,7 +5,7 @@ import ( "fmt" "time" - "github.com/qri-io/ucan" + "github.com/ucan-wg/go-ucan" ) func Example() { diff --git a/go.mod b/go.mod index b023fdb..0abdf6f 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/qri-io/ucan +module github.com/ucan-wg/go-ucan go 1.15 diff --git a/spec/token_source.go b/spec/token_source.go index 52d80c4..195fdbe 100644 --- a/spec/token_source.go +++ b/spec/token_source.go @@ -7,7 +7,7 @@ package spec // "github.com/golang-jwt/jwt" // cfgtest "github.com/qri-io/qri/config/test" // "github.com/qri-io/qri/repo/profile" -// "github.com/qri-io/ucan" +// "github.com/ucan-wg/go-ucan" // ) // // AssertTokenSourceSpec ensures a TokenSource implementation behaves as diff --git a/spec/token_store.go b/spec/token_store.go index 6db4b7c..6a26a07 100644 --- a/spec/token_store.go +++ b/spec/token_store.go @@ -9,7 +9,7 @@ package spec // "github.com/google/go-cmp/cmp" // cfgtest "github.com/qri-io/qri/config/test" // "github.com/qri-io/qri/repo/profile" -// "github.com/qri-io/ucan" +// "github.com/ucan-wg/go-ucan" // ) // // AssertTokenStoreSpec ensures an ucan.TokenStore implementation behaves as diff --git a/token.go b/token.go index 2cf5b0e..1f73ac3 100644 --- a/token.go +++ b/token.go @@ -21,7 +21,7 @@ import ( "github.com/ipfs/go-cid" "github.com/libp2p/go-libp2p-core/crypto" mh "github.com/multiformats/go-multihash" - "github.com/qri-io/ucan/didkey" + "github.com/ucan-wg/go-ucan/didkey" ) // ErrInvalidToken indicates an access token is invalid diff --git a/token_test.go b/token_test.go index c77b572..e258e28 100644 --- a/token_test.go +++ b/token_test.go @@ -8,7 +8,7 @@ import ( "time" "github.com/libp2p/go-libp2p-core/crypto" - "github.com/qri-io/ucan" + "github.com/ucan-wg/go-ucan" ) const (