Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
student_panel
/
src
/
lib
/
api
:
index.ts
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
/** * API Module Index * * This file exports all API modules organized by user roles. * This makes it easy to import role-specific APIs and prevents naming conflicts. */ // Export student API export * from './student'; // Export teacher API (placeholder) export * from './teacher'; // Export parent API (placeholder) export * from './parent'; // Re-export student API as default for backward compatibility export * from './student';