(fset *flag.FlagSet, help string)
| 44 | ` |
| 45 | |
| 46 | func usage(fset *flag.FlagSet, help string) func() { |
| 47 | return func() { |
| 48 | fmt.Fprintf(fset.Output(), "%s", help) |
| 49 | fmt.Fprintf(fset.Output(), "\nFlags:\n") |
| 50 | fset.PrintDefaults() |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | // Global flags (not command-specific) |
| 55 | var cpuprofile, memprofile, listen, traceFn string |
no outgoing calls
no test coverage detected