Resolved is a minimal interface on which Resolver operates on. Notably, this operates on Entity and Excerpt in the cache.
| 8 | // Resolved is a minimal interface on which Resolver operates on. |
| 9 | // Notably, this operates on Entity and Excerpt in the cache. |
| 10 | type Resolved interface { |
| 11 | // Id returns the object identifier. |
| 12 | Id() Id |
| 13 | } |
| 14 | |
| 15 | // Resolver is an interface to find an Entity from its Id |
| 16 | type Resolver interface { |
no outgoing calls
no test coverage detected