diff --git a/providers/github/login.go b/providers/github/login.go index 0611adc..037a852 100644 --- a/providers/github/login.go +++ b/providers/github/login.go @@ -8,8 +8,8 @@ import ( "github.com/google/go-github/v63/github" "golang.org/x/oauth2" - oauth2Login "github.com/theopenlane/core/pkg/providers/oauth2" - "github.com/theopenlane/core/pkg/sessions" + oauth2Login "github.com/theopenlane/iam/providers/oauth2" + "github.com/theopenlane/iam/sessions" ) const ( diff --git a/providers/github/login_test.go b/providers/github/login_test.go index 3260377..7e9467e 100644 --- a/providers/github/login_test.go +++ b/providers/github/login_test.go @@ -7,8 +7,8 @@ import ( "net/http/httptest" "testing" - oauth2Login "github.com/theopenlane/core/pkg/providers/oauth2" "github.com/theopenlane/core/pkg/testutils" + oauth2Login "github.com/theopenlane/iam/providers/oauth2" "github.com/google/go-github/v63/github" "github.com/stretchr/testify/assert" diff --git a/providers/google/login.go b/providers/google/login.go index 6e82784..d6613d5 100644 --- a/providers/google/login.go +++ b/providers/google/login.go @@ -8,8 +8,8 @@ import ( google "google.golang.org/api/oauth2/v2" "google.golang.org/api/option" - oauth2Login "github.com/theopenlane/core/pkg/providers/oauth2" - "github.com/theopenlane/core/pkg/sessions" + oauth2Login "github.com/theopenlane/iam/providers/oauth2" + "github.com/theopenlane/iam/sessions" ) const ( diff --git a/providers/google/login_test.go b/providers/google/login_test.go index 97e8476..7a83951 100644 --- a/providers/google/login_test.go +++ b/providers/google/login_test.go @@ -11,8 +11,8 @@ import ( "golang.org/x/oauth2" google "google.golang.org/api/oauth2/v2" - oauth2Login "github.com/theopenlane/core/pkg/providers/oauth2" "github.com/theopenlane/core/pkg/testutils" + oauth2Login "github.com/theopenlane/iam/providers/oauth2" ) const ( diff --git a/providers/oauth2/login.go b/providers/oauth2/login.go index 280322e..312c766 100644 --- a/providers/oauth2/login.go +++ b/providers/oauth2/login.go @@ -6,7 +6,7 @@ import ( "golang.org/x/oauth2" "github.com/theopenlane/core/pkg/keygen" - "github.com/theopenlane/core/pkg/sessions" + "github.com/theopenlane/iam/sessions" ) // StateHandler checks for a state cookie, if found, adds to context; if missing, a diff --git a/providers/webauthn/user_test.go b/providers/webauthn/user_test.go index b7549f1..f78657f 100644 --- a/providers/webauthn/user_test.go +++ b/providers/webauthn/user_test.go @@ -8,7 +8,7 @@ import ( "github.com/go-webauthn/webauthn/protocol" gowebauthn "github.com/go-webauthn/webauthn/webauthn" - "github.com/theopenlane/core/pkg/providers/webauthn" + "github.com/theopenlane/iam/providers/webauthn" ) func TestUserWebAuthnID(t *testing.T) { diff --git a/totp/manager_test.go b/totp/manager_test.go index a34a613..78c7a3f 100644 --- a/totp/manager_test.go +++ b/totp/manager_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/theopenlane/utils/totp" + "github.com/theopenlane/iam/totp" ) func TestDefaultName(t *testing.T) { diff --git a/totp/testing/main.go b/totp/testing/main.go index 2e0913a..8063fb8 100644 --- a/totp/testing/main.go +++ b/totp/testing/main.go @@ -5,7 +5,7 @@ import ( "net/http" "net/url" - "github.com/theopenlane/utils/totp/testing/views" + "github.com/theopenlane/iam/totp/testing/views" ) const (