Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 14 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,22 +47,21 @@ src
└── main
└── java
└── com.cheeeese
├── domain # 🧩 도메인 전체 (Bounded Context 모음)
│ ├── album # 📸 앨범 도메인
│ ├── photo # 🖼️ 사진 도메인
│ ├── cheese4cut # 🎞️ 치즈네컷 도메인
│ ├── user # 👤 사용자 도메인
│ ├── auth # 🔐 인증 / 인가
│ └── oauth2 # 🔑 소셜 로그인(OAuth2)
│ ├── application # 서비스 / 유스케이스
│ ├── domain # 엔티티 / 비즈니스 규칙
│ ├── dto # 요청·응답 DTO
│ ├── exception # 도메인 전용 예외
│ ├── infrastructure # JPA / 외부 연동
│ └── presentation # 컨트롤러 / API
├── album # 📸 앨범 도메인
├── photo # 🖼️ 사진 도메인
├── cheese4cut # 🎞️ 치즈네컷 도메인
├── user # 👤 사용자 도메인
├── auth # 🔐 인증 / 인가
├── oauth2 # 🔑 소셜 로그인(OAuth2)
│ ├── application # 서비스 / 유스케이스
│ ├── domain # 엔티티 / 비즈니스 규칙
│ ├── dto # 요청·응답 DTO
│ ├── exception # 예외
│ ├── infrastructure # JPA / 외부 연동
│ └── presentation # 컨트롤러 / API
├── global # 🌍 전역 설정 / 유틸 / AOP / 공통 예외
└── CheeeeseApplication.java # 🚀 Spring Boot 메인 실행 파일
├── global # 🌍 전역 설정 / 유틸 / AOP / 공통 예외
└── CheeeeseApplication.java # 🚀 메인 실행 파일
```


Expand Down