(prefix string, f *flag.FlagSet)
| 11 | } |
| 12 | |
| 13 | func (cfg *Config) RegisterFlagsAndApplyDefaults(prefix string, f *flag.FlagSet) { |
| 14 | f.StringVar(&cfg.Path, util.PrefixConfig(prefix, "local.path"), "", "path to store traces at.") |
| 15 | } |
| 16 | |
| 17 | func (cfg *Config) PathMatches(other *Config) bool { |
| 18 | return cfg.Path == other.Path |
nothing calls this directly
no test coverage detected