(prefix string)
| 32 | type Resolver[CacheT cache.CacheEntity] interface { |
| 33 | Resolve(id entity.Id) (CacheT, error) |
| 34 | ResolvePrefix(prefix string) (CacheT, error) |
| 35 | } |
| 36 | |
| 37 | // Resolve first try to resolve an entity using the first argument of the command |
no outgoing calls