Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion auth/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

"google.golang.org/grpc/metadata"

"github.com/Prabhjot-Sethi/core/errors"
"github.com/go-core-stack/core/errors"
)

// Auth construct obtained as part of the auth action being performed
Expand Down
2 changes: 1 addition & 1 deletion db/mongo.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"go.mongodb.org/mongo-driver/v2/mongo"
"go.mongodb.org/mongo-driver/v2/mongo/options"

"github.com/Prabhjot-Sethi/core/errors"
"github.com/go-core-stack/core/errors"
)

type mongoCollection struct {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/Prabhjot-Sethi/core
module github.com/go-core-stack/core

go 1.24

Expand Down
2 changes: 1 addition & 1 deletion reconciler/reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"sync"
"time"

"github.com/Prabhjot-Sethi/core/errors"
"github.com/go-core-stack/core/errors"
)

// Taking motivation from kubernetes
Expand Down
4 changes: 2 additions & 2 deletions reconciler/reconciler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (

"go.mongodb.org/mongo-driver/v2/bson"

"github.com/Prabhjot-Sethi/core/db"
"github.com/Prabhjot-Sethi/core/errors"
"github.com/go-core-stack/core/db"
"github.com/go-core-stack/core/errors"
)

type MyKey struct {
Expand Down
4 changes: 2 additions & 2 deletions sync/lock.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"go.mongodb.org/mongo-driver/v2/bson"
"go.mongodb.org/mongo-driver/v2/mongo"

"github.com/Prabhjot-Sethi/core/db"
"github.com/Prabhjot-Sethi/core/errors"
"github.com/go-core-stack/core/db"
"github.com/go-core-stack/core/errors"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions sync/lock_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"context"
"testing"

"github.com/Prabhjot-Sethi/core/db"
"github.com/Prabhjot-Sethi/core/errors"
"github.com/go-core-stack/core/db"
"github.com/go-core-stack/core/errors"
)

type lockKey struct {
Expand Down
2 changes: 1 addition & 1 deletion sync/observer.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package sync
import (
"sync"

"github.com/Prabhjot-Sethi/core/reconciler"
"github.com/go-core-stack/core/reconciler"
)

type observerCountKey struct {
Expand Down
6 changes: 3 additions & 3 deletions sync/observer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"testing"
"time"

"github.com/Prabhjot-Sethi/core/db"
"github.com/Prabhjot-Sethi/core/errors"
"github.com/Prabhjot-Sethi/core/reconciler"
"github.com/go-core-stack/core/db"
"github.com/go-core-stack/core/errors"
"github.com/go-core-stack/core/reconciler"
)

type MyObserver struct {
Expand Down
4 changes: 2 additions & 2 deletions sync/owner.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
"go.mongodb.org/mongo-driver/v2/bson"
"go.mongodb.org/mongo-driver/v2/mongo"

"github.com/Prabhjot-Sethi/core/db"
"github.com/Prabhjot-Sethi/core/errors"
"github.com/go-core-stack/core/db"
"github.com/go-core-stack/core/errors"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions sync/owner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"testing"
"time"

"github.com/Prabhjot-Sethi/core/db"
"github.com/Prabhjot-Sethi/core/errors"
"github.com/go-core-stack/core/db"
"github.com/go-core-stack/core/errors"
)

func Test_OwnerInit(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions sync/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import (
"go.mongodb.org/mongo-driver/v2/bson"
"go.mongodb.org/mongo-driver/v2/mongo"

"github.com/Prabhjot-Sethi/core/db"
"github.com/Prabhjot-Sethi/core/errors"
"github.com/Prabhjot-Sethi/core/reconciler"
"github.com/go-core-stack/core/db"
"github.com/go-core-stack/core/errors"
"github.com/go-core-stack/core/reconciler"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions sync/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"testing"
"time"

"github.com/Prabhjot-Sethi/core/db"
"github.com/Prabhjot-Sethi/core/errors"
"github.com/go-core-stack/core/db"
"github.com/go-core-stack/core/errors"
)

func Test_ProviderBaseTesting(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions sync/test/example.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"log"
"time"

"github.com/Prabhjot-Sethi/core/db"
"github.com/Prabhjot-Sethi/core/errors"
"github.com/Prabhjot-Sethi/core/sync"
"github.com/go-core-stack/core/db"
"github.com/go-core-stack/core/errors"
"github.com/go-core-stack/core/sync"
)

func main() {
Expand Down
6 changes: 3 additions & 3 deletions table/generic.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"log"
"reflect"

"github.com/Prabhjot-Sethi/core/db"
"github.com/Prabhjot-Sethi/core/errors"
"github.com/Prabhjot-Sethi/core/reconciler"
"github.com/go-core-stack/core/db"
"github.com/go-core-stack/core/errors"
"github.com/go-core-stack/core/reconciler"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion utils/object-encryptor.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"reflect"
"sync"

"github.com/Prabhjot-Sethi/core/errors"
"github.com/go-core-stack/core/errors"
)

var nonce = []byte("core nonce")
Expand Down