| 22 | } |
| 23 | |
| 24 | type AppCacheService interface { |
| 25 | Create(ctx context.Context, entry CacheEntry) error |
| 26 | List(ctx context.Context, keys ...string) ([]CacheEntry, error) |
| 27 | FindByName(ctx context.Context, key string) (CacheEntry, error) |
| 28 | } |
| 29 | |
| 30 | type CacheStorage interface { |
| 31 | GetAll(ctx context.Context, keys ...string) ([]CacheEntry, error) |
nothing calls this directly
no outgoing calls
no test coverage detected