You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
408 B

import userApi from './user';
import postApi from './post';
import resourceApi from './resource';
import scheduleApi from './schedule';
import commentApi from './comment';
export {
userApi,
postApi,
resourceApi,
scheduleApi,
commentApi
};
export * from './user';
export * from './post';
export * from './comment';
export * from './resource';
export * from './schedule';
export * from './search';