feat: Extract caching hooks

This commit is contained in:
gpt-engineer-app[bot]
2025-10-12 20:35:14 +00:00
parent 25c63a7b4c
commit 05c453d15b
3 changed files with 446 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
/**
* Moderation Hooks
*
* Centralized exports for all moderation-related hooks.
* These hooks are designed to support the moderation queue system.
*/
export { useEntityCache } from './useEntityCache';
export { useProfileCache } from './useProfileCache';
export type { CachedProfile } from './useProfileCache';