(ctx context.Context, key string)
| 13 | |
| 14 | type PostCache interface { |
| 15 | Get(ctx context.Context, key string) (domain.Post, error) |
| 16 | Set(ctx context.Context, key string, post domain.Post) error |
| 17 | Del(ctx context.Context, key string) error |
| 18 | PreHeat(ctx context.Context, posts []domain.Post) error |
no outgoing calls
no test coverage detected