Skip to content

Commit 736de68

Browse files
committed
chore: repo move
1 parent f3ecaf3 commit 736de68

135 files changed

Lines changed: 428 additions & 432 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div align="center">
2-
<a href="https://github.com/alanshaw/ucantone" target="_blank">
2+
<a href="https://github.com/fil-forge/ucantone" target="_blank">
33
<img src="https://github.com/user-attachments/assets/4f541813-b946-4dbc-a170-709b6ae4f05e" alt="ucantone logo" height="250" />
44
</a>
55
<h1 align="center">ucantone</h1>
@@ -10,7 +10,7 @@
1010

1111
### API Reference
1212

13-
[pkg.go.dev/github.com/alanshaw/ucantone](https://pkg.go.dev/github.com/alanshaw/ucantone)
13+
[pkg.go.dev/github.com/fil-forge/ucantone](https://pkg.go.dev/github.com/fil-forge/ucantone)
1414

1515
### Examples
1616

@@ -175,7 +175,7 @@ if x != nil {
175175

176176
## Contributing
177177

178-
Feel free to join in. All welcome. Please [open an issue](https://github.com/alanshaw/ucantone/issues)!
178+
Feel free to join in. All welcome. Please [open an issue](https://github.com/fil-forge/ucantone/issues)!
179179

180180
## License
181181

client/client.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import (
55
"errors"
66
"fmt"
77

8-
"github.com/alanshaw/ucantone/execution"
9-
"github.com/alanshaw/ucantone/transport"
10-
"github.com/alanshaw/ucantone/ucan"
11-
"github.com/alanshaw/ucantone/ucan/container"
8+
"github.com/fil-forge/ucantone/execution"
9+
"github.com/fil-forge/ucantone/transport"
10+
"github.com/fil-forge/ucantone/ucan"
11+
"github.com/fil-forge/ucantone/ucan/container"
1212
)
1313

1414
type Client[Req transport.Request, Res any] struct {

client/events.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package client
33
import (
44
"context"
55

6-
"github.com/alanshaw/ucantone/ucan"
6+
"github.com/fil-forge/ucantone/ucan"
77
)
88

99
type EventListener = any

client/http.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"net/http"
66
"net/url"
77

8-
"github.com/alanshaw/ucantone/execution"
9-
"github.com/alanshaw/ucantone/transport"
8+
"github.com/fil-forge/ucantone/execution"
9+
"github.com/fil-forge/ucantone/transport"
1010
)
1111

1212
type HTTPClient struct {

client/http_test.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ import (
55
"net/url"
66
"testing"
77

8-
"github.com/alanshaw/ucantone/client"
9-
"github.com/alanshaw/ucantone/execution"
10-
"github.com/alanshaw/ucantone/ipld"
11-
"github.com/alanshaw/ucantone/ipld/datamodel"
12-
"github.com/alanshaw/ucantone/result"
13-
"github.com/alanshaw/ucantone/server"
14-
"github.com/alanshaw/ucantone/testutil"
15-
"github.com/alanshaw/ucantone/ucan/invocation"
8+
"github.com/fil-forge/ucantone/client"
9+
"github.com/fil-forge/ucantone/execution"
10+
"github.com/fil-forge/ucantone/ipld"
11+
"github.com/fil-forge/ucantone/ipld/datamodel"
12+
"github.com/fil-forge/ucantone/result"
13+
"github.com/fil-forge/ucantone/server"
14+
"github.com/fil-forge/ucantone/testutil"
15+
"github.com/fil-forge/ucantone/ucan/invocation"
1616
"github.com/stretchr/testify/require"
1717
)
1818

client/options.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package client
33
import (
44
"net/http"
55

6-
"github.com/alanshaw/ucantone/transport"
6+
"github.com/fil-forge/ucantone/transport"
77
)
88

99
type httpClientConfig struct {

did/did_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"testing"
66

7-
"github.com/alanshaw/ucantone/did"
7+
"github.com/fil-forge/ucantone/did"
88
"github.com/stretchr/testify/require"
99
)
1010

errors/datamodel/gen/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
jsg "github.com/alanshaw/dag-json-gen"
5-
edm "github.com/alanshaw/ucantone/errors/datamodel"
5+
edm "github.com/fil-forge/ucantone/errors/datamodel"
66
cbg "github.com/whyrusleeping/cbor-gen"
77
)
88

errors/errors.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package errors
33
import (
44
"errors"
55

6-
edm "github.com/alanshaw/ucantone/errors/datamodel"
6+
edm "github.com/fil-forge/ucantone/errors/datamodel"
77
)
88

99
var (

examples/capability_definition_test.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ import (
44
"fmt"
55
"testing"
66

7-
"github.com/alanshaw/ucantone/examples/types"
8-
"github.com/alanshaw/ucantone/ipld"
9-
"github.com/alanshaw/ucantone/principal/ed25519"
10-
"github.com/alanshaw/ucantone/ucan/delegation/policy"
11-
"github.com/alanshaw/ucantone/ucan/invocation"
12-
"github.com/alanshaw/ucantone/validator/bindcap"
13-
"github.com/alanshaw/ucantone/validator/capability"
7+
"github.com/fil-forge/ucantone/examples/types"
8+
"github.com/fil-forge/ucantone/ipld"
9+
"github.com/fil-forge/ucantone/principal/ed25519"
10+
"github.com/fil-forge/ucantone/ucan/delegation/policy"
11+
"github.com/fil-forge/ucantone/ucan/invocation"
12+
"github.com/fil-forge/ucantone/validator/bindcap"
13+
"github.com/fil-forge/ucantone/validator/capability"
1414
)
1515

1616
func TestCapabilityDefinition(t *testing.T) {

0 commit comments

Comments
 (0)