| 20 | } |
| 21 | |
| 22 | type Config struct { |
| 23 | UserName string `json:"user_name"` |
| 24 | Password string `json:"password"` |
| 25 | Label map[string]string `json:"label"` |
| 26 | } |
| 27 | |
| 28 | func (cfg *Config) ID() string { |
| 29 | return cfg.UserName |
nothing calls this directly
no outgoing calls
no test coverage detected