Skip to content

Commit ef509f1

Browse files
committed
added repo changes
1 parent 0a37e08 commit ef509f1

File tree

5 files changed

+16
-14
lines changed

5 files changed

+16
-14
lines changed

go.mod

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
module github.com/chandrajeetn/lambda-flag-go-server
1+
module github.com/LambdaTest/lambda-featureflag-go-sdk
22

33
go 1.20
44

55
require (
66
github.com/joho/godotenv v1.5.1
7+
github.com/sirupsen/logrus v1.9.3
8+
gopkg.in/natefinch/lumberjack.v2 v2.2.1
79
)
10+
11+
require golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
github.com/amplitude/experiment-go-server v1.1.2 h1:Dz/aunxMU/Dpi50KNsYv+7aFj/WQGTQrR8myfuUavKo=
2-
github.com/amplitude/experiment-go-server v1.1.2/go.mod h1:xebZ3xuN/nZvDc9cMeqOWENAJ6BqdjdrmMIq3B4Hczc=
31
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
42
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
53
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=

localEvaluation/localEvaluation.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ package localEvaluation
22

33
import (
44
"fmt"
5-
_ "github.com/chandrajeetn/lambda-flag-go-server/internal/evaluation/lib/linuxArm64"
6-
_ "github.com/chandrajeetn/lambda-flag-go-server/internal/evaluation/lib/linuxX64"
7-
_ "github.com/chandrajeetn/lambda-flag-go-server/internal/evaluation/lib/macosArm64"
8-
_ "github.com/chandrajeetn/lambda-flag-go-server/internal/evaluation/lib/macosX64"
9-
"github.com/chandrajeetn/lambda-flag-go-server/pkg/experiment"
10-
"github.com/chandrajeetn/lambda-flag-go-server/pkg/experiment/local"
5+
_ "github.com/LambdaTest/lambda-featureflag-go-sdk/internal/evaluation/lib/linuxArm64"
6+
_ "github.com/LambdaTest/lambda-featureflag-go-sdk/internal/evaluation/lib/linuxX64"
7+
_ "github.com/LambdaTest/lambda-featureflag-go-sdk/internal/evaluation/lib/macosArm64"
8+
_ "github.com/LambdaTest/lambda-featureflag-go-sdk/internal/evaluation/lib/macosX64"
9+
"github.com/LambdaTest/lambda-featureflag-go-sdk/pkg/experiment"
10+
"github.com/LambdaTest/lambda-featureflag-go-sdk/pkg/experiment/local"
1111
"github.com/joho/godotenv"
1212
"os"
1313
"strconv"

pkg/experiment/local/client.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import (
99
"net/url"
1010
"sync"
1111

12-
"github.com/chandrajeetn/lambda-flag-go-server/internal/evaluation"
12+
"github.com/LambdaTest/lambda-featureflag-go-sdk/internal/evaluation"
1313

14-
"github.com/chandrajeetn/lambda-flag-go-server/pkg/experiment"
14+
"github.com/LambdaTest/lambda-featureflag-go-sdk/pkg/experiment"
1515

16-
"github.com/chandrajeetn/lambda-flag-go-server/internal/logger"
16+
"github.com/LambdaTest/lambda-featureflag-go-sdk/internal/logger"
1717
)
1818

1919
var clients = map[string]*Client{}

pkg/experiment/remote/client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212
"sync"
1313
"time"
1414

15-
"github.com/chandrajeetn/lambda-flag-go-server/pkg/experiment"
15+
"github.com/LambdaTest/lambda-featureflag-go-sdk/pkg/experiment"
1616

17-
"github.com/chandrajeetn/lambda-flag-go-server/internal/logger"
17+
"github.com/LambdaTest/lambda-featureflag-go-sdk/internal/logger"
1818
)
1919

2020
var clients = map[string]*Client{}

0 commit comments

Comments
 (0)