├── rootproject
    ├── api(api 모듈)
				├── src
						├── main
								├── java
										├── com(미정)
												├── clone(미정)
														├── interpark(미정)
																├── booking(booking API)
																├── show(show API)
																├── user(user API)
																├── auth(auth API)
								├── resources
										├── application-api.yml(api 모듈 yml 파일)
						├── test
								├── (main 과 같음)
				├── build.gradle(api 모듈 gradle 설정)
    ├── core(core 모듈)
				├── src
						├── main
								├── java
										├── com(미정)
												├── clone(미정)
														├── interpark(미정)
																├── booking
																		├── domain
																				├── entity
																				├── repository
																		├── application
																		├── exception
																		├── infrastructure
																		├── dto
																├── show
																		├── domain
																				├── entity
																				├── repository
																		├── application
																		├── exception
																		├── infrastructure
																		├── dto
																├── user
																		├── domain
																				├── entity
																				├── repository
																		├── application
																		├── exception
																		├── infrastructure
																		├── dto
																├── auth
																		├── domain
																				├── entity
																				├── repository
																		├── application
																		├── exception
																		├── infrastructure
																		├── dto
																├── common(공통 코드 패키지)
																├── facade(퍼사드 layer 패키지)
																		├── booking
																		├── show
																		├── user
																		├── auth
								├── resources
										├── application-core.yml(core 모듈 yml 파일)
						├── test
								├── (main 과 같음)
				├── build.gradle(core 모듈 gradle 설정)
    ├── scheduler(scheduler 모듈)
    ├── docker-compose.yaml(로컬용)
    ├── build.gradle(전체 프로젝트 gradle 설정)