mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
Compare commits
2 Commits
a6c1337493
...
6a803d5a4c
Author | SHA1 | Date | |
---|---|---|---|
|
6a803d5a4c | ||
|
0a0620b870 |
|
@ -91,6 +91,10 @@ func PrintConfig(s interface{}, f io.Writer, style *table.Style, withColor bool,
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if jtag := tt.Tag.Get("json"); jtag != "" && jtag != "-" {
|
if jtag := tt.Tag.Get("json"); jtag != "" && jtag != "-" {
|
||||||
|
unprintable := tt.Tag.Get("unprintable")
|
||||||
|
if unprintable == "true" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
name := strings.Split(jtag, ",")[0]
|
name := strings.Split(jtag, ",")[0]
|
||||||
if _, ok := redundantSet[name]; ok {
|
if _, ok := redundantSet[name]; ok {
|
||||||
continue
|
continue
|
||||||
|
@ -106,6 +110,10 @@ func PrintConfig(s interface{}, f io.Writer, style *table.Style, withColor bool,
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
name := strings.Split(jsonTag, ",")[0]
|
name := strings.Split(jsonTag, ",")[0]
|
||||||
|
unprintable := t.Tag.Get("unprintable")
|
||||||
|
if unprintable == "true" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
if _, ok := redundantSet[name]; ok {
|
if _, ok := redundantSet[name]; ok {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user