(ctx context.Context, pagination domain.Pagination)
| 26 | type HistoryCache interface { |
| 27 | SetCache(ctx context.Context, history domain.History) error |
| 28 | GetCache(ctx context.Context, pagination domain.Pagination) ([]domain.History, error) |
| 29 | DeleteOneCache(ctx context.Context, postId uint, uid int64) error |
| 30 | DeleteAllHistory(ctx context.Context, uid int64) error |
| 31 | } |
nothing calls this directly
no outgoing calls
no test coverage detected