chore: stub educationService to fix broken build
Add a minimal educationService stub that returns empty data, unblocking the build before the SUMI design system migration. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
parent
00bb07b180
commit
576873d319
1 changed files with 12 additions and 0 deletions
12
apps/web/src/services/educationService.ts
Normal file
12
apps/web/src/services/educationService.ts
Normal file
|
|
@ -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<Course[]> {
|
||||
// Stub — returns empty array until backend endpoint is available
|
||||
return [];
|
||||
},
|
||||
};
|
||||
Loading…
Reference in a new issue