| 14 | ) |
| 15 | |
| 16 | type Flags struct { |
| 17 | showVersion bool |
| 18 | cpuprofile string |
| 19 | memprofile string |
| 20 | trace string |
| 21 | cpuProfileFile *os.File |
| 22 | traceFile *os.File |
| 23 | } |
| 24 | |
| 25 | func (f *Flags) SetFlags(fs *flag.FlagSet) { |
| 26 | fs.BoolVar(&f.showVersion, "version", false, "print version and exit") |
nothing calls this directly
no outgoing calls
no test coverage detected