mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 14:55:16 +00:00
doc: add comment to strategy config printing func
This commit is contained in:
parent
5e7ea71613
commit
e5c1152030
|
@ -46,6 +46,11 @@ func DefaultWhiteList() []string {
|
|||
return []string{"Window", "Interval", "Symbol"}
|
||||
}
|
||||
|
||||
// @param s: strategy object
|
||||
// @param f: io.Writer used for writing the config dump
|
||||
// @param style: pretty print table style. Use DefaultStyle() to get default one.
|
||||
// @param withColor: whether to print with color
|
||||
// @param whiteLists: fields to be printed out from embedded struct (1st layer only)
|
||||
func PrintConfig(s interface{}, f io.Writer, style *table.Style, withColor bool, whiteLists ...string) {
|
||||
t := table.NewWriter()
|
||||
var write func(io.Writer, string, ...interface{})
|
||||
|
|
Loading…
Reference in New Issue
Block a user