Skip to content

Commit fa62b28

Browse files
committed
changed module repo name
1 parent 283ac88 commit fa62b28

24 files changed

+44
-44
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ clean:
1515
go clean
1616

1717
test:
18-
go test -race -v --cover ./pkg/...
18+
go test -race -v --cover ./...
1919

2020
$(LINTER):
2121
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s $(GOLANGCI_LINT_VERSION)

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,3 @@ target := dto.NewTargetBuilder("key").
2929

3030
Evaluating Feature Flag
3131
`showFeature, err := client.BoolVariation(featureFlagKey, target, false)`
32-
33-
34-
## for installing private repositories follow this guide:
35-
36-
`go env -w GOPRIVATE=github.com/wings-software`
37-
38-
[link](https://medium.com/swlh/go-modules-with-private-git-repository-3940b6835727)

cache/cache.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package cache
22

33
import (
4-
"github.com/wings-software/ff-client-sdk-go/logger"
4+
"github.com/drone/ff-golang-server-sdk/logger"
55
"time"
66
)
77

cache/lru.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package cache
22

33
import (
4+
"github.com/drone/ff-golang-server-sdk/logger"
45
lru "github.com/hashicorp/golang-lru"
5-
"github.com/wings-software/ff-client-sdk-go/logger"
66
"reflect"
77
"time"
88
)

cache/persist.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package cache
22

33
import (
4+
"github.com/drone/ff-golang-server-sdk/dto"
5+
"github.com/drone/ff-golang-server-sdk/evaluation"
6+
"github.com/drone/ff-golang-server-sdk/logger"
7+
"github.com/drone/ff-golang-server-sdk/storage"
48
"github.com/mitchellh/mapstructure"
5-
"github.com/wings-software/ff-client-sdk-go/dto"
6-
"github.com/wings-software/ff-client-sdk-go/evaluation"
7-
"github.com/wings-software/ff-client-sdk-go/logger"
8-
"github.com/wings-software/ff-client-sdk-go/storage"
99
)
1010

1111
type Persistence struct {

client/client.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import (
77
"fmt"
88
"github.com/deepmap/oapi-codegen/pkg/securityprovider"
99
"github.com/dgrijalva/jwt-go"
10+
"github.com/drone/ff-golang-server-sdk"
11+
"github.com/drone/ff-golang-server-sdk/cache"
12+
"github.com/drone/ff-golang-server-sdk/dto"
13+
"github.com/drone/ff-golang-server-sdk/evaluation"
14+
"github.com/drone/ff-golang-server-sdk/rest"
15+
"github.com/drone/ff-golang-server-sdk/stream"
16+
"github.com/drone/ff-golang-server-sdk/types"
1017
"github.com/hashicorp/go-retryablehttp"
1118
"github.com/r3labs/sse"
12-
"github.com/wings-software/ff-client-sdk-go"
13-
"github.com/wings-software/ff-client-sdk-go/cache"
14-
"github.com/wings-software/ff-client-sdk-go/dto"
15-
"github.com/wings-software/ff-client-sdk-go/evaluation"
16-
"github.com/wings-software/ff-client-sdk-go/rest"
17-
"github.com/wings-software/ff-client-sdk-go/stream"
18-
"github.com/wings-software/ff-client-sdk-go/types"
1919
"log"
2020
"strings"
2121
"sync"

client/config.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package client
22

33
import (
4-
"github.com/wings-software/ff-client-sdk-go/cache"
5-
"github.com/wings-software/ff-client-sdk-go/logger"
6-
"github.com/wings-software/ff-client-sdk-go/storage"
4+
"github.com/drone/ff-golang-server-sdk/cache"
5+
"github.com/drone/ff-golang-server-sdk/logger"
6+
"github.com/drone/ff-golang-server-sdk/storage"
77
"log"
88
)
99

client/options.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package client
22

33
import (
4-
"github.com/wings-software/ff-client-sdk-go/cache"
5-
"github.com/wings-software/ff-client-sdk-go/logger"
6-
"github.com/wings-software/ff-client-sdk-go/storage"
4+
"github.com/drone/ff-golang-server-sdk/cache"
5+
"github.com/drone/ff-golang-server-sdk/logger"
6+
"github.com/drone/ff-golang-server-sdk/storage"
77
)
88

99
type ConfigOption func(config *Config)

dto/target_builder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package dto
22

33
import (
4-
"github.com/wings-software/ff-client-sdk-go/evaluation"
4+
"github.com/drone/ff-golang-server-sdk/evaluation"
55
)
66

77
// TargetBuilderInterface used for fluent builder methods

evaluation/feature.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package evaluation
22

33
import (
44
"encoding/json"
5-
"github.com/wings-software/ff-client-sdk-go/types"
5+
"github.com/drone/ff-golang-server-sdk/types"
66
"reflect"
77
"strconv"
88
)

0 commit comments

Comments
 (0)