diff --git a/client/cmd/testutil.go b/client/cmd/testutil.go index a0dc8f3eb58..12fd6d48e17 100644 --- a/client/cmd/testutil.go +++ b/client/cmd/testutil.go @@ -13,7 +13,7 @@ import ( "google.golang.org/grpc" - "github.com/netbirdio/management-integrations/integrations" + "github.com/keyrotate/management-integrations/integrations" clientProto "github.com/keyrotate/netbird/client/proto" client "github.com/keyrotate/netbird/client/server" diff --git a/client/internal/engine_test.go b/client/internal/engine_test.go index 0e358a57d23..9bf25e9d23c 100644 --- a/client/internal/engine_test.go +++ b/client/internal/engine_test.go @@ -21,7 +21,7 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/keepalive" - "github.com/netbirdio/management-integrations/integrations" + "github.com/keyrotate/management-integrations/integrations" "github.com/keyrotate/netbird/client/internal/dns" "github.com/keyrotate/netbird/client/internal/peer" diff --git a/client/server/server_test.go b/client/server/server_test.go index d30cd39aee3..ebe4694757c 100644 --- a/client/server/server_test.go +++ b/client/server/server_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "github.com/netbirdio/management-integrations/integrations" + "github.com/keyrotate/management-integrations/integrations" log "github.com/sirupsen/logrus" "google.golang.org/grpc" diff --git a/go.mod b/go.mod index d749958ce79..3c8d0926b3d 100644 --- a/go.mod +++ b/go.mod @@ -58,7 +58,7 @@ require ( github.com/miekg/dns v1.1.43 github.com/mitchellh/hashstructure/v2 v2.0.2 github.com/nadoo/ipset v0.5.0 - github.com/netbirdio/management-integrations/integrations v0.0.0-20240524104853-69c6d89826cd + github.com/keyrotate/management-integrations/integrations v0.0.1 github.com/okta/okta-sdk-golang/v2 v2.18.0 github.com/oschwald/maxminddb-golang v1.12.0 github.com/patrickmn/go-cache v2.1.0+incompatible diff --git a/go.sum b/go.sum index 7f85a14033a..bdf77aa3364 100644 --- a/go.sum +++ b/go.sum @@ -337,8 +337,8 @@ github.com/nadoo/ipset v0.5.0 h1:5GJUAuZ7ITQQQGne5J96AmFjRtI8Avlbk6CabzYWVUc= github.com/nadoo/ipset v0.5.0/go.mod h1:rYF5DQLRGGoQ8ZSWeK+6eX5amAuPqwFkWjhQlEITGJQ= github.com/netbirdio/ice/v3 v3.0.0-20240315174635-e72a50fcb64e h1:PURA50S8u4mF6RrkYYCAvvPCixhqqEiEy3Ej6avh04c= github.com/netbirdio/ice/v3 v3.0.0-20240315174635-e72a50fcb64e/go.mod h1:YMLU7qbKfVjmEv7EoZPIVEI+kNYxWCdPK3VS0BU+U4Q= -github.com/netbirdio/management-integrations/integrations v0.0.0-20240524104853-69c6d89826cd h1:IzGGIJMpz07aPs3R6/4sxZv63JoCMddftLpVodUK+Ec= -github.com/netbirdio/management-integrations/integrations v0.0.0-20240524104853-69c6d89826cd/go.mod h1:kxks50DrZnhW+oRTdHOkVOJbcTcyo766am8RBugo+Yc= +github.com/keyrotate/management-integrations/integrations v0.0.0-20240524104853-69c6d89826cd h1:IzGGIJMpz07aPs3R6/4sxZv63JoCMddftLpVodUK+Ec= +github.com/keyrotate/management-integrations/integrations v0.0.0-20240524104853-69c6d89826cd/go.mod h1:kxks50DrZnhW+oRTdHOkVOJbcTcyo766am8RBugo+Yc= github.com/keyrotate/service v0.0.0-20230215170314-b923b89432b0 h1:hirFRfx3grVA/9eEyjME5/z3nxdJlN9kfQpvWWPk32g= github.com/keyrotate/service v0.0.0-20230215170314-b923b89432b0/go.mod h1:CIMRFEJVL+0DS1a3Nx06NaMn4Dz63Ng6O7dl0qH0zVM= github.com/keyrotate/systray v0.0.0-20231030152038-ef1ed2a27949 h1:xbWM9BU6mwZZLHxEjxIX/V8Hv3HurQt4mReIE4mY4DM= diff --git a/management/client/client_test.go b/management/client/client_test.go index 73aff2170d9..fa6fa1c9e25 100644 --- a/management/client/client_test.go +++ b/management/client/client_test.go @@ -16,7 +16,7 @@ import ( log "github.com/sirupsen/logrus" "github.com/stretchr/testify/assert" - "github.com/netbirdio/management-integrations/integrations" + "github.com/keyrotate/management-integrations/integrations" "github.com/keyrotate/netbird/encryption" mgmtProto "github.com/keyrotate/netbird/management/proto" diff --git a/management/cmd/management.go b/management/cmd/management.go index 2c6629be15e..9a67ea729b8 100644 --- a/management/cmd/management.go +++ b/management/cmd/management.go @@ -32,7 +32,7 @@ import ( "github.com/grpc-ecosystem/go-grpc-middleware/v2/interceptors/realip" - "github.com/netbirdio/management-integrations/integrations" + "github.com/keyrotate/management-integrations/integrations" "github.com/keyrotate/netbird/encryption" mgmtProto "github.com/keyrotate/netbird/management/proto" diff --git a/management/server/http/handler.go b/management/server/http/handler.go index 491c92e1f49..ecac1f69073 100644 --- a/management/server/http/handler.go +++ b/management/server/http/handler.go @@ -8,13 +8,13 @@ import ( "github.com/gorilla/mux" "github.com/rs/cors" + "github.com/keyrotate/management-integrations/integrations" s "github.com/keyrotate/netbird/management/server" "github.com/keyrotate/netbird/management/server/geolocation" "github.com/keyrotate/netbird/management/server/http/middleware" "github.com/keyrotate/netbird/management/server/integrated_validator" "github.com/keyrotate/netbird/management/server/jwtclaims" "github.com/keyrotate/netbird/management/server/telemetry" - "github.com/netbirdio/management-integrations/integrations" ) const apiPrefix = "/api"