Skip to content

Commit 2e44a95

Browse files
Update Go module paths to github.com/Prescott-Data/nexus-framework
This commit updates all `go.mod` files (root, nexus-broker, nexus-gateway, nexus-sdk, nexus-bridge) to point to the new repository location at `github.com/Prescott-Data/nexus-framework`. It also updates all internal Go imports and documentation references to reflect the new module paths. Ran `go mod tidy` in all modules and regenerated protobuf files. Co-authored-by: sangalo20 <118658385+sangalo20@users.noreply.github.com>
1 parent 7367260 commit 2e44a95

29 files changed

Lines changed: 53 additions & 57 deletions

File tree

docs/guides/integrating-agents.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717

1818
"nexus.io/nexus-bridge"
1919
"nexus.io/nexus-bridge/telemetry"
20-
"bitbucket.org/nexus/nexus-framework/nexus-sdk"
20+
"github.com/Prescott-Data/nexus-framework/nexus-sdk"
2121
)
2222

2323
func main() {
@@ -111,7 +111,7 @@ The `nexus-sdk` is a thin client for the Gateway API.
111111
```go
112112
import (
113113
"context"
114-
oauthsdk "bitbucket.org/nexus/nexus-framework/nexus-sdk"
114+
oauthsdk "github.com/Prescott-Data/nexus-framework/nexus-sdk"
115115
)
116116

117117
client := oauthsdk.New("https://<gateway-base-url>")

docs/services/bridge.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The Bridge includes built-in support for:
3030
## Usage Example (HTTP)
3131

3232
```go
33-
import "dromos.io/nexus-bridge/internal/auth"
33+
import "github.com/Prescott-Data/nexus-framework/nexus-bridge/internal/auth"
3434

3535
// ... inside your agent ...
3636
token, _ := sdkClient.GetToken(ctx, connectionID)

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
module nexus-framework
1+
module github.com/Prescott-Data/nexus-framework
22

33
go 1.24.6
4-
5-
require github.com/gorilla/websocket v1.5.3

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
github.com/gorilla/websocket v1.5.3 h1:saDtZ6Pbx/0u+bgYQ3q96pZgCzfhKXGPqt7kZ72aNNg=
2-
github.com/gorilla/websocket v1.5.3/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=

nexus-bridge/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ import (
2727
"fmt"
2828
"net/http"
2929

30-
"dromos.io/nexus-bridge"
31-
"dromos.io/nexus-bridge/telemetry"
32-
"bitbucket.org/dromos/nexus-framework/nexus-sdk" // The client for your auth backend
30+
"github.com/Prescott-Data/nexus-framework/nexus-bridge"
31+
"github.com/Prescott-Data/nexus-framework/nexus-bridge/telemetry"
32+
"github.com/Prescott-Data/nexus-framework/nexus-sdk" // The client for your auth backend
3333
)
3434

3535
// 1. Define your WebSocket handler
@@ -81,8 +81,8 @@ import (
8181
"context"
8282
"fmt"
8383

84-
"dromos.io/nexus-bridge"
85-
"bitbucket.org/dromos/nexus-framework/nexus-sdk"
84+
"github.com/Prescott-Data/nexus-framework/nexus-bridge"
85+
"github.com/Prescott-Data/nexus-framework/nexus-sdk"
8686
"google.golang.org/grpc"
8787
"google.golang.org/grpc/credentials"
8888
"google.golang.org/grpc/health/grpc_health_v1" // Example service

nexus-bridge/bridge.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"net/http"
99
"time"
1010

11-
"dromos.io/nexus-bridge/internal/auth"
12-
"dromos.io/nexus-bridge/telemetry"
11+
"github.com/Prescott-Data/nexus-framework/nexus-bridge/internal/auth"
12+
"github.com/Prescott-Data/nexus-framework/nexus-bridge/telemetry"
1313
"github.com/gorilla/websocket"
1414
"google.golang.org/grpc"
1515
)

nexus-bridge/bridge_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"testing"
1111
"time"
1212

13-
"dromos.io/nexus-bridge/internal/auth"
13+
"github.com/Prescott-Data/nexus-framework/nexus-bridge/internal/auth"
1414
"github.com/gorilla/websocket"
1515
)
1616

nexus-bridge/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module dromos.io/nexus-bridge
1+
module github.com/Prescott-Data/nexus-framework/nexus-bridge
22

33
go 1.25.3
44

@@ -25,7 +25,7 @@ require (
2525
)
2626

2727
require (
28-
bitbucket.org/dromos/nexus-framework/nexus-sdk v0.0.0-local
28+
github.com/Prescott-Data/nexus-framework/nexus-sdk v0.0.0-local
2929
github.com/aws/aws-sdk-go-v2 v1.41.0
3030
github.com/aws/smithy-go v1.24.0 // indirect
3131
github.com/davecgh/go-spew v1.1.1 // indirect
@@ -34,4 +34,4 @@ require (
3434
gopkg.in/yaml.v3 v3.0.1 // indirect
3535
)
3636

37-
replace bitbucket.org/dromos/nexus-framework/nexus-sdk => ../nexus-sdk
37+
replace github.com/Prescott-Data/nexus-framework/nexus-sdk => ../nexus-sdk

nexus-bridge/grpc_credentials.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"sync"
77
"time"
88

9-
"dromos.io/nexus-bridge/internal/auth"
9+
"github.com/Prescott-Data/nexus-framework/nexus-bridge/internal/auth"
1010
)
1111

1212
// BridgeCredentials implements credentials.PerRPCCredentials to automatically

nexus-bridge/integration_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ import (
1515
"testing"
1616
"time"
1717

18-
"bitbucket.org/dromos/nexus-framework/nexus-sdk"
19-
"dromos.io/nexus-bridge"
20-
"dromos.io/nexus-bridge/internal/auth"
18+
"github.com/Prescott-Data/nexus-framework/nexus-sdk"
19+
"github.com/Prescott-Data/nexus-framework/nexus-bridge"
20+
"github.com/Prescott-Data/nexus-framework/nexus-bridge/internal/auth"
2121
"github.com/gorilla/websocket"
2222
"google.golang.org/grpc"
2323
"google.golang.org/grpc/codes"

0 commit comments

Comments
 (0)