Skip to content

Commit 883d738

Browse files
authored
Merge pull request #35 from Prescott-Data/open-core-refactor-pkg-12286401836147239052
Refactor to support Open Core by making internal packages public
2 parents 35dbe53 + 91e4db7 commit 883d738

45 files changed

Lines changed: 30 additions & 30 deletions

Some content is hidden

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

BUG_TRACKING.md

Lines changed: 1 addition & 1 deletion

docs/services/bridge.md

Lines changed: 1 addition & 1 deletion

nexus-bridge/bridge.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"net/http"
99
"time"
1010

11-
"github.com/Prescott-Data/nexus-framework/nexus-bridge/internal/auth"
11+
"github.com/Prescott-Data/nexus-framework/nexus-bridge/pkg/auth"
1212
"github.com/Prescott-Data/nexus-framework/nexus-bridge/telemetry"
1313
"github.com/gorilla/websocket"
1414
"google.golang.org/grpc"

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-
"github.com/Prescott-Data/nexus-framework/nexus-bridge/internal/auth"
13+
"github.com/Prescott-Data/nexus-framework/nexus-bridge/pkg/auth"
1414
"github.com/gorilla/websocket"
1515
)
1616

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-
"github.com/Prescott-Data/nexus-framework/nexus-bridge/internal/auth"
9+
"github.com/Prescott-Data/nexus-framework/nexus-bridge/pkg/auth"
1010
)
1111

1212
// BridgeCredentials implements credentials.PerRPCCredentials to automatically

nexus-bridge/integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717

1818
"github.com/Prescott-Data/nexus-framework/nexus-sdk"
1919
"github.com/Prescott-Data/nexus-framework/nexus-bridge"
20-
"github.com/Prescott-Data/nexus-framework/nexus-bridge/internal/auth"
20+
"github.com/Prescott-Data/nexus-framework/nexus-bridge/pkg/auth"
2121
"github.com/gorilla/websocket"
2222
"google.golang.org/grpc"
2323
"google.golang.org/grpc/codes"
File renamed without changes.

nexus-broker/cmd/nexus-broker/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import (
1010
"strings"
1111
"time"
1212

13-
"github.com/Prescott-Data/nexus-framework/nexus-broker/internal/caching"
14-
"github.com/Prescott-Data/nexus-framework/nexus-broker/internal/handlers"
15-
"github.com/Prescott-Data/nexus-framework/nexus-broker/internal/provider"
16-
"github.com/Prescott-Data/nexus-framework/nexus-broker/internal/server"
13+
"github.com/Prescott-Data/nexus-framework/nexus-broker/pkg/caching"
14+
"github.com/Prescott-Data/nexus-framework/nexus-broker/pkg/handlers"
15+
"github.com/Prescott-Data/nexus-framework/nexus-broker/pkg/provider"
16+
"github.com/Prescott-Data/nexus-framework/nexus-broker/pkg/server"
1717
"github.com/go-chi/chi/v5"
1818
"github.com/go-redis/redis/v8"
1919
"github.com/jmoiron/sqlx"

0 commit comments

Comments
 (0)