32 lines
412 B
JavaScript
32 lines
412 B
JavaScript
|
|
/**
|
||
|
|
* API 통합 export
|
||
|
|
*/
|
||
|
|
|
||
|
|
// 클라이언트
|
||
|
|
export {
|
||
|
|
fetchApi,
|
||
|
|
fetchAuthApi,
|
||
|
|
fetchFormData,
|
||
|
|
ApiError,
|
||
|
|
get,
|
||
|
|
authGet,
|
||
|
|
post,
|
||
|
|
authPost,
|
||
|
|
put,
|
||
|
|
authPut,
|
||
|
|
del,
|
||
|
|
authDel,
|
||
|
|
} from './client';
|
||
|
|
|
||
|
|
// 인증
|
||
|
|
export * as authApi from './auth';
|
||
|
|
|
||
|
|
// 스케줄
|
||
|
|
export * as scheduleApi from './schedules';
|
||
|
|
|
||
|
|
// 앨범
|
||
|
|
export * as albumApi from './albums';
|
||
|
|
|
||
|
|
// 멤버
|
||
|
|
export * as memberApi from './members';
|