We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e373c1e + 66f29c5 commit ec49116Copy full SHA for ec49116
localEvaluation/localEvaluation.go
@@ -2,9 +2,11 @@ package localEvaluation
2
3
import (
4
"fmt"
5
+
6
"github.com/LambdaTest/lambda-featureflag-go-sdk/pkg/experiment"
7
"github.com/LambdaTest/lambda-featureflag-go-sdk/pkg/experiment/local"
8
"github.com/joho/godotenv"
9
10
"os"
11
"strconv"
12
"time"
@@ -162,3 +164,8 @@ func GetFeatureFlagByOrg(user UserProperties) map[string]interface{} {
162
164
data := getMapOfValue(user)
163
165
return data
166
}
167
168
+func GetFeatureFlagAllDataByOrg(user UserProperties) map[string]experiment.Variant {
169
+ result, _ := fetch(user)
170
+ return result
171
+}
0 commit comments