2025-08-20 16:29:11 +08:00
|
|
|
import {
|
|
|
|
|
getDashboardStatistics,
|
|
|
|
|
getLearningProgressSummary,
|
2025-08-20 21:35:14 +08:00
|
|
|
getClassRanking,
|
2025-08-20 16:29:11 +08:00
|
|
|
} from "./dashboard";
|
|
|
|
|
import { getProjectsList } from "./projectLibrary";
|
2025-08-20 18:05:50 +08:00
|
|
|
import { getJobsList, getInterviewsList } from "./companyJobs";
|
2025-08-20 22:39:05 +08:00
|
|
|
import { getLoginStudentInfo } from "./global";
|
|
|
|
|
import { getLoginStudentProgress } from "./personalProfile";
|
2025-08-20 16:29:11 +08:00
|
|
|
|
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,
|
2025-08-20 22:39:05 +08:00
|
|
|
getLoginStudentInfo,
|
|
|
|
|
getLoginStudentProgress,
|
2025-08-20 18:05:50 +08:00
|
|
|
};
|