Skip to content

Commit fd63bd0

Browse files
committed
clean up sorting: add missing sorts for stable formatting; use collections library for cleaner sorting
1 parent 48c5e5e commit fd63bd0

File tree

10 files changed

+60
-95
lines changed

10 files changed

+60
-95
lines changed

go.mod

+4-5
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@ go 1.18
55
require (
66
github.com/go-resty/resty/v2 v2.5.0
77
github.com/jstemmer/go-junit-report v0.9.1
8-
github.com/mattfenwick/collections v0.0.4
8+
github.com/mattfenwick/collections v0.0.5
99
github.com/olekukonko/tablewriter v0.0.4
1010
github.com/onsi/ginkgo v1.14.0
11-
github.com/onsi/gomega v1.10.1
11+
github.com/onsi/gomega v1.19.0
1212
github.com/pkg/errors v0.9.1
1313
github.com/sirupsen/logrus v1.8.1
1414
github.com/spf13/cobra v1.0.0
15+
golang.org/x/exp v0.0.0-20220706164943-b4a6d9510983
1516
k8s.io/api v0.24.2
1617
k8s.io/apimachinery v0.24.2
1718
k8s.io/client-go v0.24.2
@@ -45,14 +46,12 @@ require (
4546
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4647
github.com/nxadm/tail v1.4.4 // indirect
4748
github.com/spf13/pflag v1.0.5 // indirect
48-
golang.org/x/exp v0.0.0-20220706164943-b4a6d9510983 // indirect
49-
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
49+
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
5050
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
5151
golang.org/x/sys v0.0.0-20220708085239-5a0f0661e09d // indirect
5252
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
5353
golang.org/x/text v0.3.7 // indirect
5454
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
55-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
5655
google.golang.org/appengine v1.6.7 // indirect
5756
google.golang.org/protobuf v1.27.1 // indirect
5857
gopkg.in/inf.v0 v0.9.1 // indirect

go.sum

+7-5
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@ github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN
241241
github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc=
242242
github.com/mailru/easyjson v0.7.6 h1:8yTIVnZgCoiM1TgqoeTl+LfU5Jg6/xL3QhGQnimLYnA=
243243
github.com/mailru/easyjson v0.7.6/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
244-
github.com/mattfenwick/collections v0.0.4 h1:RuU9GCmK0XR0C4i/uLOKY9KccLoA8Sg4oxd9k2Q2WSs=
245-
github.com/mattfenwick/collections v0.0.4/go.mod h1:dy19jz9eH9ZR1hakFEXQkX/gt9zIb5Vo4Lzs6m67bWg=
244+
github.com/mattfenwick/collections v0.0.5 h1:R1ipSypule4CiFCuwpaSBg0MfGDFIfTJbPo4nC9Fv8s=
245+
github.com/mattfenwick/collections v0.0.5/go.mod h1:6JmZGWNsbA4g6OzJQGAOTalNWMPghEOl1q4abMZAJSQ=
246246
github.com/mattn/go-runewidth v0.0.7 h1:Ei8KR0497xHyKJPAv59M1dkC+rOZCMBJ+t3fZ+twI54=
247247
github.com/mattn/go-runewidth v0.0.7/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=
248248
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
@@ -273,10 +273,12 @@ github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+W
273273
github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk=
274274
github.com/onsi/ginkgo v1.14.0 h1:2mOpI4JVVPBN+WQRa0WKH2eXR+Ey+uK4n7Zj0aYpIQA=
275275
github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY=
276+
github.com/onsi/ginkgo/v2 v2.1.4 h1:GNapqRSid3zijZ9H77KrgVG4/8KqiyRsxcSxe+7ApXY=
276277
github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA=
277278
github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY=
278-
github.com/onsi/gomega v1.10.1 h1:o0+MgICZLuZ7xjH7Vx6zS/zcu93/BEp1VwkIW1mEXCE=
279279
github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo=
280+
github.com/onsi/gomega v1.19.0 h1:4ieX6qQjPP/BfC3mpsAtIGGlxTWPeA3Inl/7DtXw1tw=
281+
github.com/onsi/gomega v1.19.0/go.mod h1:LY+I3pBVzYsTBU1AnDwOSxaYi9WoWiqgwooUqq9yPro=
280282
github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic=
281283
github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU=
282284
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
@@ -429,8 +431,9 @@ golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v
429431
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc=
430432
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM=
431433
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
432-
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd h1:O7DYs+zxREGLKzKoMQrtrEacpb0ZVXA5rIwylE2Xchk=
433434
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
435+
golang.org/x/net v0.0.0-20220225172249-27dd8689420f h1:oA4XRj0qtSt8Yo1Zms0CUlsT3KG69V2UGQWPBxujDmc=
436+
golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
434437
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
435438
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
436439
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
@@ -579,7 +582,6 @@ golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
579582
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
580583
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
581584
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
582-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=
583585
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
584586
google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE=
585587
google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M=

pkg/connectivity/printer.go

+4-10
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ package connectivity
22

33
import (
44
"fmt"
5+
"github.com/mattfenwick/collections/pkg/builtins"
56
log "github.com/sirupsen/logrus"
7+
"golang.org/x/exp/maps"
68
"math"
79
"sort"
810
"strings"
@@ -72,19 +74,11 @@ func (m *markdownRow) GetResult() string {
7274
}
7375

7476
func (t *Printer) printMarkdownFeatureTable(primaryCounts map[string]map[bool]int, tagCounts map[string]map[string]map[bool]int) string {
75-
var primaries []string
76-
for primary := range tagCounts {
77-
primaries = append(primaries, primary)
78-
}
79-
sort.Strings(primaries)
77+
primaries := builtins.Sort(maps.Keys(tagCounts))
8078

8179
var rows []*markdownRow
8280
for _, primary := range primaries {
83-
var subs []string
84-
for sub := range tagCounts[primary] {
85-
subs = append(subs, sub)
86-
}
87-
sort.Strings(subs)
81+
subs := builtins.Sort(maps.Keys(tagCounts[primary]))
8882
rows = append(rows, &markdownRow{Name: primary, IsPrimary: true, Pass: primaryCounts[primary][true], Fail: primaryCounts[primary][false]})
8983
for _, sub := range subs {
9084
counts := tagCounts[primary][sub]

pkg/connectivity/probe/pod.go

+4-12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package probe
22

33
import (
44
"fmt"
5+
collections "github.com/mattfenwick/collections/pkg"
56
"github.com/mattfenwick/cyclonus/pkg/generator"
67
"github.com/mattfenwick/cyclonus/pkg/kube"
78
"github.com/pkg/errors"
@@ -104,29 +105,20 @@ func (p *Pod) KubePod() *v1.Pod {
104105
}
105106

106107
func (p *Pod) KubeService() *v1.Service {
107-
service := &v1.Service{
108+
return &v1.Service{
108109
ObjectMeta: metav1.ObjectMeta{
109110
Name: p.ServiceName(),
110111
Namespace: p.Namespace,
111112
},
112113
Spec: v1.ServiceSpec{
114+
Ports: collections.MapSlice(func(cont *Container) v1.ServicePort { return cont.KubeServicePort() }, p.Containers),
113115
Selector: p.Labels,
114116
},
115117
}
116-
117-
for _, cont := range p.Containers {
118-
service.Spec.Ports = append(service.Spec.Ports, cont.KubeServicePort())
119-
}
120-
121-
return service
122118
}
123119

124120
func (p *Pod) KubeContainers() []v1.Container {
125-
var containers []v1.Container
126-
for _, cont := range p.Containers {
127-
containers = append(containers, cont.KubeContainer())
128-
}
129-
return containers
121+
return collections.MapSlice(func(cont *Container) v1.Container { return cont.KubeContainer() }, p.Containers)
130122
}
131123

132124
func (p *Pod) ResolveNamedPort(port string) (int, error) {

pkg/connectivity/probe/resource-printer.go

+3-5
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ package probe
22

33
import (
44
"fmt"
5+
"github.com/mattfenwick/collections/pkg/builtins"
56
"github.com/olekukonko/tablewriter"
67
"github.com/pkg/errors"
8+
"golang.org/x/exp/maps"
79
"sort"
810
"strings"
911
)
@@ -56,11 +58,7 @@ func (r *Resources) RenderTable() string {
5658
}
5759

5860
func labelsToLines(labels map[string]string) string {
59-
var keys []string
60-
for key := range labels {
61-
keys = append(keys, key)
62-
}
63-
sort.Strings(keys)
61+
keys := builtins.Sort(maps.Keys(labels))
6462
var lines []string
6563
for _, key := range keys {
6664
lines = append(lines, fmt.Sprintf("%s: %s", key, labels[key]))

pkg/connectivity/probe/resources.go

+8-12
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
package probe
22

33
import (
4+
collections "github.com/mattfenwick/collections/pkg"
5+
"github.com/mattfenwick/collections/pkg/builtins"
46
"github.com/mattfenwick/cyclonus/pkg/kube"
57
"github.com/pkg/errors"
68
"github.com/sirupsen/logrus"
9+
"golang.org/x/exp/maps"
710
v1 "k8s.io/api/core/v1"
811
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
912
"sort"
@@ -195,7 +198,7 @@ func (r *Resources) CreatePod(ns string, podName string, labels map[string]strin
195198
}, nil
196199
}
197200

198-
// UpdatePodLabel returns a new object with an updated pod. It should not affect the original Resources object.
201+
// SetPodLabels returns a new object with an updated pod. It should not affect the original Resources object.
199202
func (r *Resources) SetPodLabels(ns string, podName string, labels map[string]string) (*Resources, error) {
200203
var pods []*Pod
201204
found := false
@@ -239,20 +242,13 @@ func (r *Resources) DeletePod(ns string, podName string) (*Resources, error) {
239242
}
240243

241244
func (r *Resources) SortedPodNames() []string {
242-
var podNames []string
243-
for _, pod := range r.Pods {
244-
podNames = append(podNames, pod.PodString().String())
245-
}
246-
sort.Strings(podNames)
247-
return podNames
245+
return builtins.Sort(collections.MapSlice(
246+
func(p *Pod) string { return p.PodString().String() },
247+
r.Pods))
248248
}
249249

250250
func (r *Resources) NamespacesSlice() []string {
251-
var nss []string
252-
for ns := range r.Namespaces {
253-
nss = append(nss, ns)
254-
}
255-
return nss
251+
return maps.Keys(r.Namespaces)
256252
}
257253

258254
func (r *Resources) CreateResourcesInKube(kubernetes kube.IKubernetes) error {

pkg/connectivity/probe/table.go

+5-16
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
package probe
22

33
import (
4+
"github.com/mattfenwick/collections/pkg/builtins"
45
"github.com/mattfenwick/cyclonus/pkg/utils"
56
"github.com/pkg/errors"
6-
"sort"
7+
"golang.org/x/exp/maps"
78
"strings"
89
)
910

@@ -77,11 +78,7 @@ func (t *Table) renderTableHelper(render func(*JobResult) string) string {
7778
isSingleElement = false
7879
break
7980
}
80-
var keys []string
81-
for k := range dict {
82-
keys = append(keys, k)
83-
}
84-
sort.Strings(keys)
81+
keys := builtins.Sort(maps.Keys(dict))
8582
schema[strings.Join(keys, "_")] = true
8683
if len(schema) > 1 {
8784
isSchemaUniform = false
@@ -123,11 +120,7 @@ func (t *Table) renderSimpleTable(render func(*JobResult) string) string {
123120
func (t *Table) renderUniformMultiTable(render func(*JobResult) string) string {
124121
key := t.Wrapped.Keys()[0]
125122
first := t.Get(key.From, key.To)
126-
var keys []string
127-
for k := range first.JobResults {
128-
keys = append(keys, k)
129-
}
130-
sort.Strings(keys)
123+
keys := builtins.Sort(maps.Keys(first.JobResults))
131124
schema := strings.Join(keys, "\n")
132125
return t.Wrapped.Table(schema, true, func(fr, to string, i interface{}) string {
133126
dict := t.Get(fr, to).JobResults
@@ -142,11 +135,7 @@ func (t *Table) renderUniformMultiTable(render func(*JobResult) string) string {
142135
func (t *Table) renderNonuniformTable(render func(*JobResult) string) string {
143136
return t.Wrapped.Table("", true, func(fr, to string, i interface{}) string {
144137
dict := t.Get(fr, to).JobResults
145-
var keys []string
146-
for k := range dict {
147-
keys = append(keys, k)
148-
}
149-
sort.Strings(keys)
138+
keys := builtins.Sort(maps.Keys(dict))
150139
var lines []string
151140
for _, k := range keys {
152141
lines = append(lines, k+": "+render(dict[k]))

pkg/kube/labelselector.go

+15-23
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
package kube
22

33
import (
4-
"encoding/json"
54
"fmt"
6-
"github.com/pkg/errors"
5+
collections "github.com/mattfenwick/collections/pkg"
6+
"github.com/mattfenwick/collections/pkg/builtins"
7+
"github.com/mattfenwick/cyclonus/pkg/utils"
8+
"golang.org/x/exp/maps"
79
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
8-
"sort"
910
"strings"
1011
)
1112

@@ -92,23 +93,12 @@ func IsLabelSelectorEmpty(l metav1.LabelSelector) bool {
9293
// SerializeLabelSelector deterministically converts a metav1.LabelSelector
9394
// into a string
9495
func SerializeLabelSelector(ls metav1.LabelSelector) string {
95-
var labelKeys []string
96-
for key := range ls.MatchLabels {
97-
labelKeys = append(labelKeys, key)
98-
}
99-
sort.Slice(labelKeys, func(i, j int) bool {
100-
return labelKeys[i] < labelKeys[j]
101-
})
102-
var keyVals []string
103-
for _, key := range labelKeys {
104-
keyVals = append(keyVals, fmt.Sprintf("%s: %s", key, ls.MatchLabels[key]))
105-
}
106-
// this is weird, but use an array to make the order deterministic
107-
bytes, err := json.Marshal([]interface{}{"MatchLabels", keyVals, "MatchExpression", ls.MatchExpressions})
108-
if err != nil {
109-
panic(errors.Wrapf(err, "unable to marshal json"))
110-
}
111-
return string(bytes)
96+
labelKeys := builtins.Sort(maps.Keys(ls.MatchLabels))
97+
keyVals := collections.MapSlice(func(key string) string {
98+
return fmt.Sprintf("%s: %s", key, ls.MatchLabels[key])
99+
}, labelKeys)
100+
// this looks weird -- we're using an array to make the order deterministic
101+
return utils.JsonStringNoIndent([]interface{}{"MatchLabels", keyVals, "MatchExpression", ls.MatchExpressions})
112102
}
113103

114104
func LabelSelectorTableLines(selector metav1.LabelSelector) string {
@@ -118,14 +108,16 @@ func LabelSelectorTableLines(selector metav1.LabelSelector) string {
118108
var lines []string
119109
if len(selector.MatchLabels) > 0 {
120110
lines = append(lines, "Match labels:")
121-
for key, val := range selector.MatchLabels {
111+
for _, key := range builtins.Sort(maps.Keys(selector.MatchLabels)) {
112+
val := selector.MatchLabels[key]
122113
lines = append(lines, fmt.Sprintf(" %s: %s", key, val))
123114
}
124115
}
125116
if len(selector.MatchExpressions) > 0 {
126117
lines = append(lines, "Match expressions:")
127-
for _, exp := range selector.MatchExpressions {
128-
lines = append(lines, fmt.Sprintf(" %s %s %+v", exp.Key, exp.Operator, exp.Values))
118+
sortedMatchExpressions := builtins.SortOn(selector.MatchExpressions, func(l metav1.LabelSelectorRequirement) string { return l.Key })
119+
for _, exp := range sortedMatchExpressions {
120+
lines = append(lines, fmt.Sprintf(" %s %s %+v", exp.Key, exp.Operator, builtins.Sort(exp.Values)))
129121
}
130122
}
131123
return strings.Join(lines, "\n")

pkg/matcher/explain.go

+4-7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package matcher
33
import (
44
"fmt"
55
collections "github.com/mattfenwick/collections/pkg"
6+
"github.com/mattfenwick/collections/pkg/builtins"
67
"github.com/mattfenwick/cyclonus/pkg/kube"
78
"github.com/mattfenwick/cyclonus/pkg/utils"
89
"github.com/olekukonko/tablewriter"
@@ -48,22 +49,18 @@ func (s *SliceBuilder) TargetsTableLines(targets []*Target, isIngress bool) {
4849
ruleType = "Egress"
4950
}
5051
for _, target := range targets {
51-
sourceRules := collections.SortBy(collections.MapSlice(
52+
sourceRules := builtins.Sort(collections.MapSlice(
5253
func(sr *networkingv1.NetworkPolicy) string {
5354
return fmt.Sprintf("%s/%s", sr.Namespace, sr.Name)
54-
}, target.SourceRules),
55-
collections.OrderedCompare[string])
55+
}, target.SourceRules))
5656
targetString := fmt.Sprintf("namespace: %s\n%s", target.Namespace, kube.LabelSelectorTableLines(target.PodSelector))
5757
rules := strings.Join(sourceRules, "\n")
5858
s.Prefix = []string{ruleType, targetString, rules}
5959

6060
if len(target.Peers) == 0 {
6161
s.Append("no pods, no ips", "no ports, no protocols")
6262
} else {
63-
comparator := func(a PeerMatcher, b PeerMatcher) collections.Ordering {
64-
return collections.String(utils.DumpJSON(a)).Compare(collections.String(utils.DumpJSON(b)))
65-
}
66-
for _, peer := range collections.SortBy(target.Peers, comparator) {
63+
for _, peer := range builtins.SortOn(target.Peers, func(p PeerMatcher) string { return utils.DumpJSON(p) }) {
6764
switch a := peer.(type) {
6865
case *AllPeersMatcher:
6966
s.Append("all pods, all ips", "all ports, all protocols")

pkg/utils/utils.go

+6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ func DoOrDie(err error) {
1717
}
1818
}
1919

20+
func JsonStringNoIndent(obj interface{}) string {
21+
bytes, err := json.Marshal(obj)
22+
DoOrDie(errors.Wrapf(err, "unable to marshal json"))
23+
return string(bytes)
24+
}
25+
2026
func JsonString(obj interface{}) string {
2127
bytes, err := json.MarshalIndent(obj, "", " ")
2228
DoOrDie(errors.Wrapf(err, "unable to marshal json"))

0 commit comments

Comments
 (0)