src/
├── main/
│ ├── java/
│ │ └── com/ssafy/foofa/
│ │ ├── core # 공통 유틸리티 및 설정
│ │ │ ├── annotation # 커스텀 어노테이션
│ │ │ ├── auth # JWT 관리 및 인증
│ │ │ ├── config # Spring, 웹 관련 설정
│ │ │ ├── serialization # 직렬화
│ │ │ └── exception # 커스텀 예외
│ │ ├── battle # 배틀 관련 모듈
│ │ │ ├── application # 애플리케이션 서비스
│ │ │ ├── domain # 도메인 엔티티 및 리포지토리
│ │ │ ├── infra # 외부 API 연동
│ │ │ └── presentation # API (Controller) 및 DTO
│ │ ├── identity # 사용자 및 로그인 관련 모듈
│ │ │ ├── application
│ │ │ ├── domain
│ │ │ ├── infra # 외부 API 연동
│ │ │ └── presentation
│ │ ├── chat # 채팅 관련 모듈
│ │ └── FoofaApplication.kt
│ └── resources # 리소스 파일 (설정, 스크립트 등)
│ ├── application.yaml # 개발 환경 설정
│ ├── application-prod.yaml # 운영 환경 설정
└── test/ # 테스트 관련 코드
├── java # 테스트 코드
└── resources # 테스트용 리소스
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|