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 9fda24b commit e9c2143Copy full SHA for e9c2143
k8s/patch.go
@@ -6,17 +6,17 @@ type (
6
JsonPatch interface{}
7
8
JsonPatchString struct {
9
- JsonPatch
10
- Op string `json:"op"`
11
- Path string `json:"path"`
12
- Value string `json:"value"`
+ JsonPatch `json:"-"`
+ Op string `json:"op"`
+ Path string `json:"path"`
+ Value string `json:"value"`
13
}
14
15
JsonPatchObject struct {
16
17
18
19
- Value interface{} `json:"value"`
+ Value interface{} `json:"value"`
20
21
)
22
0 commit comments