-
Notifications
You must be signed in to change notification settings - Fork 233
/
Copy pathexample_test.go
54 lines (43 loc) · 1.21 KB
/
example_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package sdk
import (
context "context"
flipt "go.flipt.io/flipt/rpc/flipt"
evaluation "go.flipt.io/flipt/rpc/flipt/evaluation"
)
func ExampleNew() {
// see the following subpackages for transport implementations:
// - grpc
// - http
var transport Transport
client := New(transport)
client.Flipt().GetFlag(context.Background(), &flipt.GetFlagRequest{
NamespaceKey: "my_namespace",
Key: "my_flag",
})
}
func ExampleEvaluation_Boolean() {
// see the following subpackages for transport implementations:
// - grpc
// - http
var transport Transport
client := New(transport)
client.Evaluation().Boolean(context.Background(), &evaluation.EvaluationRequest{
NamespaceKey: "my_namespace",
FlagKey: "my_flag",
EntityId: "my_entity",
Context: map[string]string{"some": "context"},
})
}
func ExampleEvaluation_Variant() {
// see the following subpackages for transport implementations:
// - grpc
// - http
var transport Transport
client := New(transport)
client.Evaluation().Variant(context.Background(), &evaluation.EvaluationRequest{
NamespaceKey: "my_namespace",
FlagKey: "my_flag",
EntityId: "my_entity",
Context: map[string]string{"some": "context"},
})
}