fromis_9/backend/src/schemas/index.js
caadiq f483f2cf53 refactor(backend): 트랜잭션 헬퍼, JSON 스키마 추가 및 스키마 파일 분리
- src/utils/transaction.js: withTransaction 헬퍼 함수 추가
- src/schemas/: 도메인별 스키마 파일 분리 (common, album, schedule, admin, member, auth)
- 라우트에 JSON Schema 검증 및 Swagger 문서화 적용
- 트랜잭션 패턴을 withTransaction 헬퍼로 추상화

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 14:58:07 +09:00

11 lines
252 B
JavaScript

/**
* JSON Schema 정의
* 입력 검증 및 Swagger 문서화에 사용
*/
export * from './common.js';
export * from './album.js';
export * from './schedule.js';
export * from './admin.js';
export * from './member.js';
export * from './auth.js';