Files
planka/client/src/models/index.js
2020-04-21 05:44:12 +05:00

26 lines
500 B
JavaScript
Executable File

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