123456789101112131415161718192021222324252627282930 |
- import {Company} from "./schemas/Company"
- import {EduTextbook} from "./schemas/EduTextbook"
- import {Profile} from "./schemas/Profile"
- import {EduCollection} from "./schemas/EduCollection"
- import {_User} from "./schemas/_User"
- import {_Role} from "./schemas/_Role"
- import {_Session} from "./schemas/_Session"
- import {Submitted} from "./schemas/Submitted"
- import {EduProcess} from "./schemas/EduProcess"
- import { Department } from "./schemas/Department"
- import { EduReview } from "./schemas/EduReview"
- import { Activity } from "./schemas/Activity"
- import { ExpertGroup } from "./schemas/ExpertGroup"
- export const EduSchemas = [
- _User,
- _Role,
- // _Session,
- Company,
- EduTextbook,
- Profile,
- EduCollection,
- Submitted,
- EduProcess,
- Department,
- EduReview,
- Activity,
- ExpertGroup
- ]
- module.exports.EduSchemas = EduSchemas
|