mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-03 16:21:14 +01:00
16 lines
249 B
Go
16 lines
249 B
Go
|
package flagutil
|
||
|
|
||
|
import (
|
||
|
"flag"
|
||
|
"fmt"
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
// WriteFlags writes all the explicitly set flags to w.
|
||
|
func WriteFlags(w io.Writer) {
|
||
|
flag.Visit(func(f *flag.Flag) {
|
||
|
value := f.Value.String()
|
||
|
fmt.Fprintf(w, "-%s=%q\n", f.Name, value)
|
||
|
})
|
||
|
}
|