import http from './http'; import socket from './socket'; import accessTokens from './access-tokens'; import users from './users'; import projects from './projects'; import projectMemberships from './project-memberships'; import boards from './boards'; import lists from './lists'; import labels from './labels'; import cards from './cards'; import cardMemberships from './card-memberships'; import cardLabels from './card-labels'; import tasks from './tasks'; import actions from './actions'; import commentActions from './comment-actions'; import notifications from './notifications'; export { http, socket }; export default { ...accessTokens, ...users, ...projects, ...projectMemberships, ...boards, ...lists, ...labels, ...cards, ...cardMemberships, ...cardLabels, ...tasks, ...actions, ...commentActions, ...notifications, };