()
| 7 | // Config is the constraint interface for configs stored in handler caches. |
| 8 | type Config interface { |
| 9 | UID() string // SeenCache key (globally unique per source) |
| 10 | ExposedKey() string // ExposedCache key (one per logical name) |
| 11 | SourceType() string // "dyncfg", "user", "stock" |
| 12 | SourceTypePriority() int // dyncfg=16, user=8, stock=2 |
no outgoing calls