diff --git a/apps/web/src/services/educationService.ts b/apps/web/src/services/educationService.ts new file mode 100644 index 000000000..54f58b6a8 --- /dev/null +++ b/apps/web/src/services/educationService.ts @@ -0,0 +1,12 @@ +/** + * Education Service — Stub + * TODO: Implement with real API when education backend is ready + */ +import type { Course } from '@/types'; + +export const educationService = { + async getCatalog(): Promise { + // Stub — returns empty array until backend endpoint is available + return []; + }, +};