Skip to content

Commit 830325f

Browse files
authored
Update README.md
1 parent af9badf commit 830325f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,14 @@ This version of the SDK is compatible with Go v1.18 and above.
2323
func main() {
2424
eppoClient = eppoclient.InitClient(eppoclient.Config{
2525
ApiKey: "<your_api_key>",
26-
BaseUrl: "<base_url>", // optional, default https://fscdn.eppo.cloud/api
2726
AssignmentLogger: eppoclient.AssignmentLogger{},
2827
})
2928
}
3029
3130
func someBLFunc() {
3231
assignment, _ := eppoClient.GetAssignment("subject-1", "experiment_5", sbjAttrs)
3332
34-
if assigment == "control" {
33+
if assignment == "control" {
3534
// do something
3635
}
3736
}

0 commit comments

Comments
 (0)