File "index.ts"

Full Path: /home/trinadezambia/public_html/student_panel/src/lib/api/index.ts
File size: 442 bytes
MIME-type: text/plain
Charset: utf-8

/**
 * 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';