Files
claude-mem/src/ui/viewer/constants/api.ts
T
Alex Newman f8dc7f940f uploade
2025-11-06 15:47:16 -05:00

14 lines
360 B
TypeScript

/**
* API endpoint paths
* Centralized to avoid magic strings scattered throughout the codebase
*/
export const API_ENDPOINTS = {
OBSERVATIONS: '/api/observations',
SUMMARIES: '/api/summaries',
PROMPTS: '/api/prompts',
SETTINGS: '/api/settings',
STATS: '/api/stats',
PROCESSING_STATUS: '/api/processing-status',
STREAM: '/stream',
} as const;