(ctx context.Context)
| 18 | type RankingLocalCache interface { |
| 19 | Set(ctx context.Context, posts []domain.Post) error |
| 20 | Get(ctx context.Context) ([]domain.Post, error) |
| 21 | ForceGet(ctx context.Context) ([]domain.Post, error) |
| 22 | } |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected