Files
teach_sys_Demo/src/services/index.js

17 lines
394 B
JavaScript

import {
getDashboardStatistics,
getLearningProgressSummary,
} from "./dashboard";
import { getProjectsList } from "./projectLibrary";
import { getJobsList, getInterviewsList } from "./companyJobs";
import { getCurrentStudent } from "./global";
export {
getDashboardStatistics,
getLearningProgressSummary,
getProjectsList,
getJobsList,
getInterviewsList,
getCurrentStudent,
};