We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00c60fb commit 7530056Copy full SHA for 7530056
pkg/experiment/local/types.go
@@ -5,13 +5,13 @@ type EvaluationVariant struct {
5
Payload interface{} `json:"payload,omitempty"`
6
}
7
8
-type FlagResult struct {
+type flagResult struct {
9
Variant EvaluationVariant `json:"variant,omitempty"`
10
Description string `json:"description,omitempty"`
11
IsDefaultVariant bool `json:"isDefaultVariant,omitempty"`
12
13
14
-type EvaluationResult = map[string]FlagResult
+type EvaluationResult = map[string]flagResult
15
16
type interopResult struct {
17
Result *EvaluationResult `json:"result,omitempty"`
0 commit comments