From 33841ea2619cecbc63e10125e02e5d9e0638cebd Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Thu, 8 Jan 2026 15:45:48 -0500 Subject: [PATCH] refactor(args): update import paths to use new repository location --- pkg/args/args.go | 4 ++-- pkg/args/args_test.go | 6 +++--- pkg/args/builder_test.go | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkg/args/args.go b/pkg/args/args.go index 305b9af..47ca883 100644 --- a/pkg/args/args.go +++ b/pkg/args/args.go @@ -16,8 +16,8 @@ import ( "github.com/ipld/go-ipld-prime/node/basicnode" "github.com/ipld/go-ipld-prime/printer" - "github.com/ucan-wg/go-ucan/pkg/policy/limits" - "github.com/ucan-wg/go-ucan/pkg/policy/literal" + "code.sonr.org/go/ucan/pkg/policy/limits" + "code.sonr.org/go/ucan/pkg/policy/literal" ) var ErrNotFound = errors.New("key not found in meta") diff --git a/pkg/args/args_test.go b/pkg/args/args_test.go index e0b247c..073b734 100644 --- a/pkg/args/args_test.go +++ b/pkg/args/args_test.go @@ -14,9 +14,9 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/ucan-wg/go-ucan/pkg/args" - "github.com/ucan-wg/go-ucan/pkg/policy/limits" - "github.com/ucan-wg/go-ucan/pkg/policy/literal" + "code.sonr.org/go/ucan/pkg/args" + "code.sonr.org/go/ucan/pkg/policy/limits" + "code.sonr.org/go/ucan/pkg/policy/literal" ) func TestArgs(t *testing.T) { diff --git a/pkg/args/builder_test.go b/pkg/args/builder_test.go index 9e8c60d..138cba1 100644 --- a/pkg/args/builder_test.go +++ b/pkg/args/builder_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/ucan-wg/go-ucan/pkg/args" + "code.sonr.org/go/ucan/pkg/args" ) func TestBuilder_XXX(t *testing.T) {