Files
teach_sys_Demo/src/services/index.js

19 lines
432 B
JavaScript
Raw Normal View History

import {
getDashboardStatistics,
getLearningProgressSummary,
2025-08-20 21:35:14 +08:00
getClassRanking,
} from "./dashboard";
import { getProjectsList } from "./projectLibrary";
2025-08-20 18:05:50 +08:00
import { getJobsList, getInterviewsList } from "./companyJobs";
import { getCurrentStudent } from "./global";
2025-08-20 18:05:50 +08:00
export {
getDashboardStatistics,
getLearningProgressSummary,
2025-08-20 21:35:14 +08:00
getClassRanking,
2025-08-20 18:05:50 +08:00
getProjectsList,
getJobsList,
getInterviewsList,
getCurrentStudent,
};