Files
planka-zh/client/src/models/index.js

28 lines
559 B
JavaScript
Executable File

import User from './User';
import Project from './Project';
import ProjectManager from './ProjectManager';
import Board from './Board';
import BoardMembership from './BoardMembership';
import Label from './Label';
import List from './List';
import Card from './Card';
import Task from './Task';
import Attachment from './Attachment';
import Action from './Action';
import Notification from './Notification';
export {
User,
Project,
ProjectManager,
Board,
BoardMembership,
Label,
List,
Card,
Task,
Attachment,
Action,
Notification,
};