diff --git a/cmd/flipt/export.go b/cmd/flipt/export.go index 69df3656f8..6d143d455b 100644 --- a/cmd/flipt/export.go +++ b/cmd/flipt/export.go @@ -9,12 +9,12 @@ import ( "syscall" "time" - "github.com/markphelps/flipt/internal/ext" - "github.com/markphelps/flipt/storage" - "github.com/markphelps/flipt/storage/sql" - "github.com/markphelps/flipt/storage/sql/mysql" - "github.com/markphelps/flipt/storage/sql/postgres" - "github.com/markphelps/flipt/storage/sql/sqlite" + "go.flipt.io/flipt/internal/ext" + "go.flipt.io/flipt/storage" + "go.flipt.io/flipt/storage/sql" + "go.flipt.io/flipt/storage/sql/mysql" + "go.flipt.io/flipt/storage/sql/postgres" + "go.flipt.io/flipt/storage/sql/sqlite" ) var exportFilename string diff --git a/cmd/flipt/import.go b/cmd/flipt/import.go index 73f3b8c36d..7fd601a7c9 100644 --- a/cmd/flipt/import.go +++ b/cmd/flipt/import.go @@ -10,12 +10,12 @@ import ( "path/filepath" "syscall" - "github.com/markphelps/flipt/internal/ext" - "github.com/markphelps/flipt/storage" - "github.com/markphelps/flipt/storage/sql" - "github.com/markphelps/flipt/storage/sql/mysql" - "github.com/markphelps/flipt/storage/sql/postgres" - "github.com/markphelps/flipt/storage/sql/sqlite" + "go.flipt.io/flipt/internal/ext" + "go.flipt.io/flipt/storage" + "go.flipt.io/flipt/storage/sql" + "go.flipt.io/flipt/storage/sql/mysql" + "go.flipt.io/flipt/storage/sql/postgres" + "go.flipt.io/flipt/storage/sql/sqlite" ) var ( diff --git a/cmd/flipt/main.go b/cmd/flipt/main.go index d30a1fa620..c1e25dd05e 100644 --- a/cmd/flipt/main.go +++ b/cmd/flipt/main.go @@ -25,24 +25,24 @@ import ( "github.com/go-chi/chi/v5/middleware" "github.com/go-chi/cors" "github.com/google/go-github/v32/github" - "github.com/markphelps/flipt/config" - "github.com/markphelps/flipt/internal/info" - "github.com/markphelps/flipt/internal/telemetry" - pb "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/server" - "github.com/markphelps/flipt/storage" - "github.com/markphelps/flipt/storage/cache" - "github.com/markphelps/flipt/storage/cache/memory" - "github.com/markphelps/flipt/storage/sql" - "github.com/markphelps/flipt/storage/sql/mysql" - "github.com/markphelps/flipt/storage/sql/postgres" - "github.com/markphelps/flipt/storage/sql/sqlite" - "github.com/markphelps/flipt/swagger" - "github.com/markphelps/flipt/ui" "github.com/phyber/negroni-gzip/gzip" "github.com/prometheus/client_golang/prometheus/promhttp" "github.com/sirupsen/logrus" "github.com/spf13/cobra" + "go.flipt.io/flipt/config" + "go.flipt.io/flipt/internal/info" + "go.flipt.io/flipt/internal/telemetry" + pb "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/server" + "go.flipt.io/flipt/storage" + "go.flipt.io/flipt/storage/cache" + "go.flipt.io/flipt/storage/cache/memory" + "go.flipt.io/flipt/storage/sql" + "go.flipt.io/flipt/storage/sql/mysql" + "go.flipt.io/flipt/storage/sql/postgres" + "go.flipt.io/flipt/storage/sql/sqlite" + "go.flipt.io/flipt/swagger" + "go.flipt.io/flipt/ui" "golang.org/x/sync/errgroup" "google.golang.org/grpc" "google.golang.org/grpc/credentials" diff --git a/go.mod b/go.mod index 22d34e4023..4af95f59cf 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/markphelps/flipt +module go.flipt.io/flipt go 1.17 diff --git a/internal/ext/exporter.go b/internal/ext/exporter.go index d298f2206d..bda2248778 100644 --- a/internal/ext/exporter.go +++ b/internal/ext/exporter.go @@ -6,8 +6,8 @@ import ( "fmt" "io" - "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" + "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" "gopkg.in/yaml.v2" ) diff --git a/internal/ext/exporter_test.go b/internal/ext/exporter_test.go index 01adb8974e..8b91817744 100644 --- a/internal/ext/exporter_test.go +++ b/internal/ext/exporter_test.go @@ -6,9 +6,9 @@ import ( "io/ioutil" "testing" - "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" "github.com/stretchr/testify/assert" + "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" ) type mockLister struct { diff --git a/internal/ext/importer.go b/internal/ext/importer.go index c6f70ba035..d5e5c6ed50 100644 --- a/internal/ext/importer.go +++ b/internal/ext/importer.go @@ -6,7 +6,7 @@ import ( "fmt" "io" - "github.com/markphelps/flipt/rpc/flipt" + "go.flipt.io/flipt/rpc/flipt" "gopkg.in/yaml.v2" ) diff --git a/internal/ext/importer_test.go b/internal/ext/importer_test.go index 825d1073a1..28e3572ba1 100644 --- a/internal/ext/importer_test.go +++ b/internal/ext/importer_test.go @@ -6,8 +6,8 @@ import ( "testing" "github.com/gofrs/uuid" - "github.com/markphelps/flipt/rpc/flipt" "github.com/stretchr/testify/assert" + "go.flipt.io/flipt/rpc/flipt" ) type mockCreator struct { diff --git a/internal/telemetry/telemetry.go b/internal/telemetry/telemetry.go index 71e46f0c88..a24dccdc5c 100644 --- a/internal/telemetry/telemetry.go +++ b/internal/telemetry/telemetry.go @@ -11,9 +11,9 @@ import ( "time" "github.com/gofrs/uuid" - "github.com/markphelps/flipt/config" - "github.com/markphelps/flipt/internal/info" "github.com/sirupsen/logrus" + "go.flipt.io/flipt/config" + "go.flipt.io/flipt/internal/info" "gopkg.in/segmentio/analytics-go.v3" ) diff --git a/internal/telemetry/telemetry_test.go b/internal/telemetry/telemetry_test.go index 0ec1dcf9e8..25080b3b7a 100644 --- a/internal/telemetry/telemetry_test.go +++ b/internal/telemetry/telemetry_test.go @@ -9,10 +9,10 @@ import ( "path/filepath" "testing" - "github.com/markphelps/flipt/config" - "github.com/markphelps/flipt/internal/info" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + "go.flipt.io/flipt/config" + "go.flipt.io/flipt/internal/info" "github.com/sirupsen/logrus/hooks/test" "gopkg.in/segmentio/analytics-go.v3" diff --git a/rpc/flipt/validation.go b/rpc/flipt/validation.go index a6788c34ac..99f7b97743 100644 --- a/rpc/flipt/validation.go +++ b/rpc/flipt/validation.go @@ -6,7 +6,7 @@ import ( "regexp" "strings" - "github.com/markphelps/flipt/errors" + "go.flipt.io/flipt/errors" ) const maxVariantAttachmentSize = 10000 diff --git a/rpc/flipt/validation_fuzz_test.go b/rpc/flipt/validation_fuzz_test.go index 31214cf6c9..3739d0c841 100644 --- a/rpc/flipt/validation_fuzz_test.go +++ b/rpc/flipt/validation_fuzz_test.go @@ -7,7 +7,7 @@ import ( "errors" "testing" - errs "github.com/markphelps/flipt/errors" + errs "go.flipt.io/flipt/errors" ) func FuzzValidateAttachment(f *testing.F) { diff --git a/rpc/flipt/validation_test.go b/rpc/flipt/validation_test.go index b11579087f..16b3c5cb1d 100644 --- a/rpc/flipt/validation_test.go +++ b/rpc/flipt/validation_test.go @@ -4,8 +4,8 @@ import ( "fmt" "testing" - "github.com/markphelps/flipt/errors" "github.com/stretchr/testify/assert" + "go.flipt.io/flipt/errors" ) func largeJsonString() string { diff --git a/server/evaluator.go b/server/evaluator.go index bd4df4447a..0168182dd3 100644 --- a/server/evaluator.go +++ b/server/evaluator.go @@ -11,9 +11,9 @@ import ( "time" "github.com/gofrs/uuid" - errs "github.com/markphelps/flipt/errors" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" + errs "go.flipt.io/flipt/errors" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" timestamp "google.golang.org/protobuf/types/known/timestamppb" ) diff --git a/server/evaluator_test.go b/server/evaluator_test.go index 42f0b44e88..c1c95c80da 100644 --- a/server/evaluator_test.go +++ b/server/evaluator_test.go @@ -5,12 +5,12 @@ import ( "testing" "github.com/gofrs/uuid" - "github.com/markphelps/flipt/errors" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" + "go.flipt.io/flipt/errors" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" ) var ( diff --git a/server/flag.go b/server/flag.go index 9b15a53a52..3e0f0ab1d0 100644 --- a/server/flag.go +++ b/server/flag.go @@ -3,8 +3,8 @@ package server import ( "context" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" empty "google.golang.org/protobuf/types/known/emptypb" ) diff --git a/server/flag_test.go b/server/flag_test.go index 6a2c9672f4..2a194b7322 100644 --- a/server/flag_test.go +++ b/server/flag_test.go @@ -4,10 +4,10 @@ import ( "context" "testing" - flipt "github.com/markphelps/flipt/rpc/flipt" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" + flipt "go.flipt.io/flipt/rpc/flipt" ) func TestGetFlag(t *testing.T) { diff --git a/server/rule.go b/server/rule.go index 3744a24d1a..76ed174d56 100644 --- a/server/rule.go +++ b/server/rule.go @@ -3,8 +3,8 @@ package server import ( "context" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" empty "google.golang.org/protobuf/types/known/emptypb" ) diff --git a/server/rule_test.go b/server/rule_test.go index 7ca2935fb8..313973f50c 100644 --- a/server/rule_test.go +++ b/server/rule_test.go @@ -4,10 +4,10 @@ import ( "context" "testing" - flipt "github.com/markphelps/flipt/rpc/flipt" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" + flipt "go.flipt.io/flipt/rpc/flipt" ) func TestGetRule(t *testing.T) { diff --git a/server/segment.go b/server/segment.go index f7c8c53b74..23f172e721 100644 --- a/server/segment.go +++ b/server/segment.go @@ -3,8 +3,8 @@ package server import ( "context" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" empty "google.golang.org/protobuf/types/known/emptypb" ) diff --git a/server/segment_test.go b/server/segment_test.go index 92c7e07f2c..710b43cbc3 100644 --- a/server/segment_test.go +++ b/server/segment_test.go @@ -4,10 +4,10 @@ import ( "context" "testing" - flipt "github.com/markphelps/flipt/rpc/flipt" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" + flipt "go.flipt.io/flipt/rpc/flipt" ) func TestGetSegment(t *testing.T) { diff --git a/server/server.go b/server/server.go index 5234cd79a9..e3e571fd4b 100644 --- a/server/server.go +++ b/server/server.go @@ -4,9 +4,9 @@ import ( "context" "errors" - errs "github.com/markphelps/flipt/errors" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" + errs "go.flipt.io/flipt/errors" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" "github.com/sirupsen/logrus" "google.golang.org/grpc" diff --git a/server/server_test.go b/server/server_test.go index 0c891609d7..edefe43c88 100644 --- a/server/server_test.go +++ b/server/server_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/markphelps/flipt/errors" + "go.flipt.io/flipt/errors" "github.com/sirupsen/logrus/hooks/test" "github.com/stretchr/testify/assert" diff --git a/server/support_test.go b/server/support_test.go index af1b472fb2..ce4989ec94 100644 --- a/server/support_test.go +++ b/server/support_test.go @@ -3,9 +3,9 @@ package server import ( "context" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" "github.com/stretchr/testify/mock" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" ) var ( diff --git a/storage/cache/evaluation.go b/storage/cache/evaluation.go index 09845e0c5f..837b978603 100644 --- a/storage/cache/evaluation.go +++ b/storage/cache/evaluation.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/markphelps/flipt/storage" + "go.flipt.io/flipt/storage" ) const ( diff --git a/storage/cache/evaluation_test.go b/storage/cache/evaluation_test.go index 47ed13e2a1..36d6d3d7cc 100644 --- a/storage/cache/evaluation_test.go +++ b/storage/cache/evaluation_test.go @@ -4,10 +4,10 @@ import ( "context" "testing" - "github.com/markphelps/flipt/storage" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" + "go.flipt.io/flipt/storage" ) func TestGetEvaluationRules(t *testing.T) { diff --git a/storage/cache/flag.go b/storage/cache/flag.go index 9b4f989dc5..e3bff2edb8 100644 --- a/storage/cache/flag.go +++ b/storage/cache/flag.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" ) const flagCachePrefix = "flag:" diff --git a/storage/cache/flag_test.go b/storage/cache/flag_test.go index 56a353f318..b11c70e542 100644 --- a/storage/cache/flag_test.go +++ b/storage/cache/flag_test.go @@ -4,11 +4,11 @@ import ( "context" "testing" - "github.com/markphelps/flipt/errors" - flipt "github.com/markphelps/flipt/rpc/flipt" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" + "go.flipt.io/flipt/errors" + flipt "go.flipt.io/flipt/rpc/flipt" ) func TestGetFlag(t *testing.T) { diff --git a/storage/cache/rule.go b/storage/cache/rule.go index 5a7971fae6..d395d8bd21 100644 --- a/storage/cache/rule.go +++ b/storage/cache/rule.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" ) const ruleCachePrefix = "rule:" diff --git a/storage/cache/rule_test.go b/storage/cache/rule_test.go index 0864665227..6502881a09 100644 --- a/storage/cache/rule_test.go +++ b/storage/cache/rule_test.go @@ -4,11 +4,11 @@ import ( "context" "testing" - "github.com/markphelps/flipt/errors" - flipt "github.com/markphelps/flipt/rpc/flipt" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" + "go.flipt.io/flipt/errors" + flipt "go.flipt.io/flipt/rpc/flipt" ) func TestGetRule(t *testing.T) { diff --git a/storage/cache/segment.go b/storage/cache/segment.go index cf24b25c33..3fa9ef7671 100644 --- a/storage/cache/segment.go +++ b/storage/cache/segment.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" ) const segmentCachePrefix = "segment:" diff --git a/storage/cache/segment_test.go b/storage/cache/segment_test.go index 42e2e920fc..eb23531fb4 100644 --- a/storage/cache/segment_test.go +++ b/storage/cache/segment_test.go @@ -4,11 +4,11 @@ import ( "context" "testing" - "github.com/markphelps/flipt/errors" - flipt "github.com/markphelps/flipt/rpc/flipt" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" + "go.flipt.io/flipt/errors" + flipt "go.flipt.io/flipt/rpc/flipt" ) func TestGetSegment(t *testing.T) { diff --git a/storage/cache/store.go b/storage/cache/store.go index 36b81c1054..e99d664295 100644 --- a/storage/cache/store.go +++ b/storage/cache/store.go @@ -3,8 +3,8 @@ package cache import ( "fmt" - "github.com/markphelps/flipt/storage" "github.com/sirupsen/logrus" + "go.flipt.io/flipt/storage" ) var _ storage.Store = &Store{} diff --git a/storage/cache/support_test.go b/storage/cache/support_test.go index 277c758489..4aa3db1525 100644 --- a/storage/cache/support_test.go +++ b/storage/cache/support_test.go @@ -3,11 +3,11 @@ package cache import ( "context" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" "github.com/sirupsen/logrus" "github.com/sirupsen/logrus/hooks/test" "github.com/stretchr/testify/mock" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" ) var ( diff --git a/storage/sql/common/evaluation.go b/storage/sql/common/evaluation.go index 64f0ae58cd..6ef8cd6cb9 100644 --- a/storage/sql/common/evaluation.go +++ b/storage/sql/common/evaluation.go @@ -5,8 +5,8 @@ import ( "database/sql" sq "github.com/Masterminds/squirrel" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" ) type optionalConstraint struct { diff --git a/storage/sql/common/flag.go b/storage/sql/common/flag.go index a6970d90e8..25bea31691 100644 --- a/storage/sql/common/flag.go +++ b/storage/sql/common/flag.go @@ -10,9 +10,9 @@ import ( sq "github.com/Masterminds/squirrel" "github.com/gofrs/uuid" - errs "github.com/markphelps/flipt/errors" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" + errs "go.flipt.io/flipt/errors" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" "google.golang.org/protobuf/types/known/timestamppb" ) diff --git a/storage/sql/common/rule.go b/storage/sql/common/rule.go index 5c80c2eec6..513c612b2d 100644 --- a/storage/sql/common/rule.go +++ b/storage/sql/common/rule.go @@ -9,9 +9,9 @@ import ( "github.com/gofrs/uuid" "google.golang.org/protobuf/types/known/timestamppb" - errs "github.com/markphelps/flipt/errors" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" + errs "go.flipt.io/flipt/errors" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" ) // GetRule gets an individual rule diff --git a/storage/sql/common/segment.go b/storage/sql/common/segment.go index 1e7c96cfc5..a4b04f64e7 100644 --- a/storage/sql/common/segment.go +++ b/storage/sql/common/segment.go @@ -9,9 +9,9 @@ import ( sq "github.com/Masterminds/squirrel" "github.com/gofrs/uuid" - errs "github.com/markphelps/flipt/errors" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" + errs "go.flipt.io/flipt/errors" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" "google.golang.org/protobuf/types/known/timestamppb" ) diff --git a/storage/sql/db.go b/storage/sql/db.go index cbfce7d865..3fb0095b24 100644 --- a/storage/sql/db.go +++ b/storage/sql/db.go @@ -10,9 +10,9 @@ import ( "github.com/lib/pq" "github.com/luna-duclos/instrumentedsql" "github.com/luna-duclos/instrumentedsql/opentracing" - "github.com/markphelps/flipt/config" "github.com/mattn/go-sqlite3" "github.com/xo/dburl" + "go.flipt.io/flipt/config" ) // Open opens a connection to the db diff --git a/storage/sql/db_test.go b/storage/sql/db_test.go index 5608b081fd..6da7a5056a 100644 --- a/storage/sql/db_test.go +++ b/storage/sql/db_test.go @@ -13,13 +13,13 @@ import ( ms "github.com/golang-migrate/migrate/database/mysql" pg "github.com/golang-migrate/migrate/database/postgres" "github.com/golang-migrate/migrate/database/sqlite3" - "github.com/markphelps/flipt/config" - "github.com/markphelps/flipt/storage" - "github.com/markphelps/flipt/storage/sql/mysql" - "github.com/markphelps/flipt/storage/sql/postgres" - "github.com/markphelps/flipt/storage/sql/sqlite" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + "go.flipt.io/flipt/config" + "go.flipt.io/flipt/storage" + "go.flipt.io/flipt/storage/sql/mysql" + "go.flipt.io/flipt/storage/sql/postgres" + "go.flipt.io/flipt/storage/sql/sqlite" _ "github.com/golang-migrate/migrate/source/file" ) diff --git a/storage/sql/evaluation_test.go b/storage/sql/evaluation_test.go index 1f62c18ee5..9d6ebf3493 100644 --- a/storage/sql/evaluation_test.go +++ b/storage/sql/evaluation_test.go @@ -5,9 +5,9 @@ import ( "testing" "time" - flipt "github.com/markphelps/flipt/rpc/flipt" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + flipt "go.flipt.io/flipt/rpc/flipt" ) func TestGetEvaluationRules(t *testing.T) { diff --git a/storage/sql/flag_test.go b/storage/sql/flag_test.go index 83a68955fe..dd83f0d80e 100644 --- a/storage/sql/flag_test.go +++ b/storage/sql/flag_test.go @@ -6,12 +6,12 @@ import ( "testing" "time" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" - "github.com/markphelps/flipt/storage/cache" - "github.com/markphelps/flipt/storage/cache/memory" "github.com/sirupsen/logrus" "github.com/sirupsen/logrus/hooks/test" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" + "go.flipt.io/flipt/storage/cache" + "go.flipt.io/flipt/storage/cache/memory" "github.com/gofrs/uuid" "github.com/stretchr/testify/assert" diff --git a/storage/sql/migrator.go b/storage/sql/migrator.go index a036af62fc..65bccfe6f2 100644 --- a/storage/sql/migrator.go +++ b/storage/sql/migrator.go @@ -10,8 +10,8 @@ import ( "github.com/golang-migrate/migrate/database/mysql" "github.com/golang-migrate/migrate/database/postgres" "github.com/golang-migrate/migrate/database/sqlite3" - "github.com/markphelps/flipt/config" "github.com/sirupsen/logrus" + "go.flipt.io/flipt/config" ) var expectedVersions = map[Driver]uint{ diff --git a/storage/sql/mysql/mysql.go b/storage/sql/mysql/mysql.go index f39ecfeac4..5fc624df54 100644 --- a/storage/sql/mysql/mysql.go +++ b/storage/sql/mysql/mysql.go @@ -8,10 +8,10 @@ import ( sq "github.com/Masterminds/squirrel" "github.com/go-sql-driver/mysql" - errs "github.com/markphelps/flipt/errors" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" - "github.com/markphelps/flipt/storage/sql/common" + errs "go.flipt.io/flipt/errors" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" + "go.flipt.io/flipt/storage/sql/common" ) const ( diff --git a/storage/sql/postgres/postgres.go b/storage/sql/postgres/postgres.go index 5d776bfa6f..ca8ae2ccbf 100644 --- a/storage/sql/postgres/postgres.go +++ b/storage/sql/postgres/postgres.go @@ -8,10 +8,10 @@ import ( sq "github.com/Masterminds/squirrel" "github.com/lib/pq" - errs "github.com/markphelps/flipt/errors" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" - "github.com/markphelps/flipt/storage/sql/common" + errs "go.flipt.io/flipt/errors" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" + "go.flipt.io/flipt/storage/sql/common" ) const ( diff --git a/storage/sql/rule_test.go b/storage/sql/rule_test.go index 4b23fae374..d6145a3d50 100644 --- a/storage/sql/rule_test.go +++ b/storage/sql/rule_test.go @@ -7,14 +7,14 @@ import ( "testing" "time" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" - "github.com/markphelps/flipt/storage/cache" - "github.com/markphelps/flipt/storage/cache/memory" "github.com/sirupsen/logrus" "github.com/sirupsen/logrus/hooks/test" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" + "go.flipt.io/flipt/storage/cache" + "go.flipt.io/flipt/storage/cache/memory" ) func TestGetRule(t *testing.T) { diff --git a/storage/sql/segment_test.go b/storage/sql/segment_test.go index 139438d9e4..9f0022707f 100644 --- a/storage/sql/segment_test.go +++ b/storage/sql/segment_test.go @@ -5,12 +5,12 @@ import ( "testing" "time" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" - "github.com/markphelps/flipt/storage/cache" - "github.com/markphelps/flipt/storage/cache/memory" "github.com/sirupsen/logrus" "github.com/sirupsen/logrus/hooks/test" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" + "go.flipt.io/flipt/storage/cache" + "go.flipt.io/flipt/storage/cache/memory" "github.com/gofrs/uuid" "github.com/stretchr/testify/assert" diff --git a/storage/sql/sqlite/sqlite.go b/storage/sql/sqlite/sqlite.go index 17bec17172..5f088cf78f 100644 --- a/storage/sql/sqlite/sqlite.go +++ b/storage/sql/sqlite/sqlite.go @@ -7,11 +7,11 @@ import ( "errors" sq "github.com/Masterminds/squirrel" - errs "github.com/markphelps/flipt/errors" - flipt "github.com/markphelps/flipt/rpc/flipt" - "github.com/markphelps/flipt/storage" - "github.com/markphelps/flipt/storage/sql/common" "github.com/mattn/go-sqlite3" + errs "go.flipt.io/flipt/errors" + flipt "go.flipt.io/flipt/rpc/flipt" + "go.flipt.io/flipt/storage" + "go.flipt.io/flipt/storage/sql/common" ) var _ storage.Store = &Store{} diff --git a/storage/storage.go b/storage/storage.go index be114d212d..f4caca1e39 100644 --- a/storage/storage.go +++ b/storage/storage.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - flipt "github.com/markphelps/flipt/rpc/flipt" + flipt "go.flipt.io/flipt/rpc/flipt" ) // EvaluationRule represents a rule and constraints required for evaluating if a