diff --git a/service-customer/Dockerfile b/customer/Dockerfile similarity index 100% rename from service-customer/Dockerfile rename to customer/Dockerfile diff --git a/service-customer/build.gradle.kts b/customer/build.gradle.kts similarity index 100% rename from service-customer/build.gradle.kts rename to customer/build.gradle.kts diff --git a/service-customer/gradle/wrapper/gradle-wrapper.jar b/customer/gradle/wrapper/gradle-wrapper.jar similarity index 100% rename from service-customer/gradle/wrapper/gradle-wrapper.jar rename to customer/gradle/wrapper/gradle-wrapper.jar diff --git a/service-customer/gradle/wrapper/gradle-wrapper.properties b/customer/gradle/wrapper/gradle-wrapper.properties similarity index 100% rename from service-customer/gradle/wrapper/gradle-wrapper.properties rename to customer/gradle/wrapper/gradle-wrapper.properties diff --git a/service-customer/gradlew b/customer/gradlew similarity index 100% rename from service-customer/gradlew rename to customer/gradlew diff --git a/service-customer/gradlew.bat b/customer/gradlew.bat similarity index 100% rename from service-customer/gradlew.bat rename to customer/gradlew.bat diff --git a/service-customer/settings.gradle.kts b/customer/settings.gradle.kts similarity index 100% rename from service-customer/settings.gradle.kts rename to customer/settings.gradle.kts diff --git a/service-customer/src/main/kotlin/me/bread/customer/CustomerApplication.kt b/customer/src/main/kotlin/me/bread/customer/CustomerApplication.kt similarity index 100% rename from service-customer/src/main/kotlin/me/bread/customer/CustomerApplication.kt rename to customer/src/main/kotlin/me/bread/customer/CustomerApplication.kt diff --git a/service-customer/src/main/kotlin/me/bread/customer/presentation/rest/CustomerController.kt b/customer/src/main/kotlin/me/bread/customer/presentation/rest/CustomerController.kt similarity index 100% rename from service-customer/src/main/kotlin/me/bread/customer/presentation/rest/CustomerController.kt rename to customer/src/main/kotlin/me/bread/customer/presentation/rest/CustomerController.kt diff --git a/service-customer/src/main/resources/application.properties b/customer/src/main/resources/application.properties similarity index 100% rename from service-customer/src/main/resources/application.properties rename to customer/src/main/resources/application.properties diff --git a/service-customer/src/test/kotlin/me/bread/customer/CustomerApplicationTests.kt b/customer/src/test/kotlin/me/bread/customer/CustomerApplicationTests.kt similarity index 100% rename from service-customer/src/test/kotlin/me/bread/customer/CustomerApplicationTests.kt rename to customer/src/test/kotlin/me/bread/customer/CustomerApplicationTests.kt diff --git a/service-order/Dockerfile b/order/Dockerfile similarity index 100% rename from service-order/Dockerfile rename to order/Dockerfile diff --git a/service-order/build.gradle.kts b/order/build.gradle.kts similarity index 100% rename from service-order/build.gradle.kts rename to order/build.gradle.kts diff --git a/service-order/gradle.properties b/order/gradle.properties similarity index 100% rename from service-order/gradle.properties rename to order/gradle.properties diff --git a/service-order/gradle/wrapper/gradle-wrapper.jar b/order/gradle/wrapper/gradle-wrapper.jar similarity index 100% rename from service-order/gradle/wrapper/gradle-wrapper.jar rename to order/gradle/wrapper/gradle-wrapper.jar diff --git a/service-order/gradle/wrapper/gradle-wrapper.properties b/order/gradle/wrapper/gradle-wrapper.properties similarity index 100% rename from service-order/gradle/wrapper/gradle-wrapper.properties rename to order/gradle/wrapper/gradle-wrapper.properties diff --git a/service-order/gradlew b/order/gradlew similarity index 100% rename from service-order/gradlew rename to order/gradlew diff --git a/service-order/gradlew.bat b/order/gradlew.bat similarity index 100% rename from service-order/gradlew.bat rename to order/gradlew.bat diff --git a/service-order/settings.gradle.kts b/order/settings.gradle.kts similarity index 100% rename from service-order/settings.gradle.kts rename to order/settings.gradle.kts diff --git a/service-order/src/main/kotlin/me/bread/order/OrderApplication.kt b/order/src/main/kotlin/me/bread/order/OrderApplication.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/OrderApplication.kt rename to order/src/main/kotlin/me/bread/order/OrderApplication.kt diff --git a/service-order/src/main/kotlin/me/bread/order/adapter/OrderItemMapper.kt b/order/src/main/kotlin/me/bread/order/adapter/OrderItemMapper.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/adapter/OrderItemMapper.kt rename to order/src/main/kotlin/me/bread/order/adapter/OrderItemMapper.kt diff --git a/service-order/src/main/kotlin/me/bread/order/adapter/OrderMapper.kt b/order/src/main/kotlin/me/bread/order/adapter/OrderMapper.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/adapter/OrderMapper.kt rename to order/src/main/kotlin/me/bread/order/adapter/OrderMapper.kt diff --git a/service-order/src/main/kotlin/me/bread/order/adapter/PaymentItemMapper.kt b/order/src/main/kotlin/me/bread/order/adapter/PaymentItemMapper.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/adapter/PaymentItemMapper.kt rename to order/src/main/kotlin/me/bread/order/adapter/PaymentItemMapper.kt diff --git a/service-order/src/main/kotlin/me/bread/order/adapter/PaymentMapper.kt b/order/src/main/kotlin/me/bread/order/adapter/PaymentMapper.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/adapter/PaymentMapper.kt rename to order/src/main/kotlin/me/bread/order/adapter/PaymentMapper.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/annotation/Live.kt b/order/src/main/kotlin/me/bread/order/application/annotation/Live.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/annotation/Live.kt rename to order/src/main/kotlin/me/bread/order/application/annotation/Live.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/annotation/Local.kt b/order/src/main/kotlin/me/bread/order/application/annotation/Local.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/annotation/Local.kt rename to order/src/main/kotlin/me/bread/order/application/annotation/Local.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/annotation/LocalDev.kt b/order/src/main/kotlin/me/bread/order/application/annotation/LocalDev.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/annotation/LocalDev.kt rename to order/src/main/kotlin/me/bread/order/application/annotation/LocalDev.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/external/AuthApi.kt b/order/src/main/kotlin/me/bread/order/application/external/AuthApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/external/AuthApi.kt rename to order/src/main/kotlin/me/bread/order/application/external/AuthApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/external/DeliveryApi.kt b/order/src/main/kotlin/me/bread/order/application/external/DeliveryApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/external/DeliveryApi.kt rename to order/src/main/kotlin/me/bread/order/application/external/DeliveryApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/external/PaymentApi.kt b/order/src/main/kotlin/me/bread/order/application/external/PaymentApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/external/PaymentApi.kt rename to order/src/main/kotlin/me/bread/order/application/external/PaymentApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/external/ProductApi.kt b/order/src/main/kotlin/me/bread/order/application/external/ProductApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/external/ProductApi.kt rename to order/src/main/kotlin/me/bread/order/application/external/ProductApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/model/Customer.kt b/order/src/main/kotlin/me/bread/order/application/model/Customer.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/model/Customer.kt rename to order/src/main/kotlin/me/bread/order/application/model/Customer.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/model/TossPayment.kt b/order/src/main/kotlin/me/bread/order/application/model/TossPayment.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/model/TossPayment.kt rename to order/src/main/kotlin/me/bread/order/application/model/TossPayment.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/service/AuthService.kt b/order/src/main/kotlin/me/bread/order/application/service/AuthService.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/service/AuthService.kt rename to order/src/main/kotlin/me/bread/order/application/service/AuthService.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/service/DeliveryService.kt b/order/src/main/kotlin/me/bread/order/application/service/DeliveryService.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/service/DeliveryService.kt rename to order/src/main/kotlin/me/bread/order/application/service/DeliveryService.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/service/OrderService.kt b/order/src/main/kotlin/me/bread/order/application/service/OrderService.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/service/OrderService.kt rename to order/src/main/kotlin/me/bread/order/application/service/OrderService.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/service/PaymentService.kt b/order/src/main/kotlin/me/bread/order/application/service/PaymentService.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/service/PaymentService.kt rename to order/src/main/kotlin/me/bread/order/application/service/PaymentService.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/service/ProductService.kt b/order/src/main/kotlin/me/bread/order/application/service/ProductService.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/service/ProductService.kt rename to order/src/main/kotlin/me/bread/order/application/service/ProductService.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/usecase/PaymentUseCase.kt b/order/src/main/kotlin/me/bread/order/application/usecase/PaymentUseCase.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/usecase/PaymentUseCase.kt rename to order/src/main/kotlin/me/bread/order/application/usecase/PaymentUseCase.kt diff --git a/service-order/src/main/kotlin/me/bread/order/application/usecase/PreorderUseCase.kt b/order/src/main/kotlin/me/bread/order/application/usecase/PreorderUseCase.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/application/usecase/PreorderUseCase.kt rename to order/src/main/kotlin/me/bread/order/application/usecase/PreorderUseCase.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/entity/Order.kt b/order/src/main/kotlin/me/bread/order/domain/entity/Order.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/entity/Order.kt rename to order/src/main/kotlin/me/bread/order/domain/entity/Order.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/entity/OrderItem.kt b/order/src/main/kotlin/me/bread/order/domain/entity/OrderItem.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/entity/OrderItem.kt rename to order/src/main/kotlin/me/bread/order/domain/entity/OrderItem.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/entity/Payment.kt b/order/src/main/kotlin/me/bread/order/domain/entity/Payment.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/entity/Payment.kt rename to order/src/main/kotlin/me/bread/order/domain/entity/Payment.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/entity/PaymentItem.kt b/order/src/main/kotlin/me/bread/order/domain/entity/PaymentItem.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/entity/PaymentItem.kt rename to order/src/main/kotlin/me/bread/order/domain/entity/PaymentItem.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/enums/OrderStatus.kt b/order/src/main/kotlin/me/bread/order/domain/enums/OrderStatus.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/enums/OrderStatus.kt rename to order/src/main/kotlin/me/bread/order/domain/enums/OrderStatus.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/repository/OrderItemRepository.kt b/order/src/main/kotlin/me/bread/order/domain/repository/OrderItemRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/repository/OrderItemRepository.kt rename to order/src/main/kotlin/me/bread/order/domain/repository/OrderItemRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/repository/OrderRepository.kt b/order/src/main/kotlin/me/bread/order/domain/repository/OrderRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/repository/OrderRepository.kt rename to order/src/main/kotlin/me/bread/order/domain/repository/OrderRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/repository/PaymentItemRepository.kt b/order/src/main/kotlin/me/bread/order/domain/repository/PaymentItemRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/repository/PaymentItemRepository.kt rename to order/src/main/kotlin/me/bread/order/domain/repository/PaymentItemRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/repository/PaymentRepository.kt b/order/src/main/kotlin/me/bread/order/domain/repository/PaymentRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/repository/PaymentRepository.kt rename to order/src/main/kotlin/me/bread/order/domain/repository/PaymentRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/domain/vo/PhoneNumber.kt b/order/src/main/kotlin/me/bread/order/domain/vo/PhoneNumber.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/domain/vo/PhoneNumber.kt rename to order/src/main/kotlin/me/bread/order/domain/vo/PhoneNumber.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/external/AuthFakeApi.kt b/order/src/main/kotlin/me/bread/order/infrastructure/external/AuthFakeApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/external/AuthFakeApi.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/external/AuthFakeApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/external/AuthRealApi.kt b/order/src/main/kotlin/me/bread/order/infrastructure/external/AuthRealApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/external/AuthRealApi.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/external/AuthRealApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/external/DeliveryFakeApi.kt b/order/src/main/kotlin/me/bread/order/infrastructure/external/DeliveryFakeApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/external/DeliveryFakeApi.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/external/DeliveryFakeApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/external/FakePaymentApi.kt b/order/src/main/kotlin/me/bread/order/infrastructure/external/FakePaymentApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/external/FakePaymentApi.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/external/FakePaymentApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/external/ProductFakeApi.kt b/order/src/main/kotlin/me/bread/order/infrastructure/external/ProductFakeApi.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/external/ProductFakeApi.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/external/ProductFakeApi.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/external/TossMockWebHook.kt b/order/src/main/kotlin/me/bread/order/infrastructure/external/TossMockWebHook.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/external/TossMockWebHook.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/external/TossMockWebHook.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/external/WebClientConfig.kt b/order/src/main/kotlin/me/bread/order/infrastructure/external/WebClientConfig.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/external/WebClientConfig.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/external/WebClientConfig.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2Config.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2Config.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2Config.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2Config.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2FlywayConfig.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2FlywayConfig.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2FlywayConfig.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/H2FlywayConfig.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLConfig.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLConfig.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLConfig.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLConfig.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLFlywayConfig.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLFlywayConfig.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLFlywayConfig.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/config/local/MySQLFlywayConfig.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderEntity.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderEntity.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderEntity.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderEntity.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderItemEntity.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderItemEntity.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderItemEntity.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/OrderItemEntity.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentEntity.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentEntity.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentEntity.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentEntity.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentItemEntity.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentItemEntity.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentItemEntity.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/entity/PaymentItemEntity.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCoroutineRepository.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCoroutineRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCoroutineRepository.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCoroutineRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCustomRepository.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCustomRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCustomRepository.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderCustomRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemCoroutineRepository.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemCoroutineRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemCoroutineRepository.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemCoroutineRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemRepositoryAdapter.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemRepositoryAdapter.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemRepositoryAdapter.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderItemRepositoryAdapter.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderRepositoryAdapter.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderRepositoryAdapter.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderRepositoryAdapter.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/OrderRepositoryAdapter.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentCoroutineRepository.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentCoroutineRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentCoroutineRepository.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentCoroutineRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemCoroutineRepository.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemCoroutineRepository.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemCoroutineRepository.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemCoroutineRepository.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemRepositoryAdapter.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemRepositoryAdapter.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemRepositoryAdapter.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentItemRepositoryAdapter.kt diff --git a/service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentRepositoryAdapter.kt b/order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentRepositoryAdapter.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentRepositoryAdapter.kt rename to order/src/main/kotlin/me/bread/order/infrastructure/r2dbc/repository/PaymentRepositoryAdapter.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/rest/HealthController.kt b/order/src/main/kotlin/me/bread/order/presentation/rest/HealthController.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/rest/HealthController.kt rename to order/src/main/kotlin/me/bread/order/presentation/rest/HealthController.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/rest/OrderController.kt b/order/src/main/kotlin/me/bread/order/presentation/rest/OrderController.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/rest/OrderController.kt rename to order/src/main/kotlin/me/bread/order/presentation/rest/OrderController.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/rest/PaymentController.kt b/order/src/main/kotlin/me/bread/order/presentation/rest/PaymentController.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/rest/PaymentController.kt rename to order/src/main/kotlin/me/bread/order/presentation/rest/PaymentController.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/rest/RestExceptionHandler.kt b/order/src/main/kotlin/me/bread/order/presentation/rest/RestExceptionHandler.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/rest/RestExceptionHandler.kt rename to order/src/main/kotlin/me/bread/order/presentation/rest/RestExceptionHandler.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/rest/request/PaymentRequest.kt b/order/src/main/kotlin/me/bread/order/presentation/rest/request/PaymentRequest.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/rest/request/PaymentRequest.kt rename to order/src/main/kotlin/me/bread/order/presentation/rest/request/PaymentRequest.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/rest/request/PreorderRequest.kt b/order/src/main/kotlin/me/bread/order/presentation/rest/request/PreorderRequest.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/rest/request/PreorderRequest.kt rename to order/src/main/kotlin/me/bread/order/presentation/rest/request/PreorderRequest.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorCode.kt b/order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorCode.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorCode.kt rename to order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorCode.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorMessage.kt b/order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorMessage.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorMessage.kt rename to order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorMessage.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorType.kt b/order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorType.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorType.kt rename to order/src/main/kotlin/me/bread/order/presentation/support/error/ErrorType.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/support/error/RestException.kt b/order/src/main/kotlin/me/bread/order/presentation/support/error/RestException.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/support/error/RestException.kt rename to order/src/main/kotlin/me/bread/order/presentation/support/error/RestException.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/support/response/RestResponse.kt b/order/src/main/kotlin/me/bread/order/presentation/support/response/RestResponse.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/support/response/RestResponse.kt rename to order/src/main/kotlin/me/bread/order/presentation/support/response/RestResponse.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/support/response/ResultType.kt b/order/src/main/kotlin/me/bread/order/presentation/support/response/ResultType.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/support/response/ResultType.kt rename to order/src/main/kotlin/me/bread/order/presentation/support/response/ResultType.kt diff --git a/service-order/src/main/kotlin/me/bread/order/presentation/support/security/SecurityConfig.kt b/order/src/main/kotlin/me/bread/order/presentation/support/security/SecurityConfig.kt similarity index 100% rename from service-order/src/main/kotlin/me/bread/order/presentation/support/security/SecurityConfig.kt rename to order/src/main/kotlin/me/bread/order/presentation/support/security/SecurityConfig.kt diff --git a/service-order/src/main/resources/application.yml b/order/src/main/resources/application.yml similarity index 100% rename from service-order/src/main/resources/application.yml rename to order/src/main/resources/application.yml diff --git a/service-order/src/main/resources/db/migration/V1__Init_schema.sql b/order/src/main/resources/db/migration/V1__Init_schema.sql similarity index 100% rename from service-order/src/main/resources/db/migration/V1__Init_schema.sql rename to order/src/main/resources/db/migration/V1__Init_schema.sql diff --git a/service-order/src/test/kotlin/me/bread/order/BaseTestSetup.kt b/order/src/test/kotlin/me/bread/order/BaseTestSetup.kt similarity index 100% rename from service-order/src/test/kotlin/me/bread/order/BaseTestSetup.kt rename to order/src/test/kotlin/me/bread/order/BaseTestSetup.kt diff --git a/service-order/src/test/kotlin/me/bread/order/Fixture.kt b/order/src/test/kotlin/me/bread/order/Fixture.kt similarity index 100% rename from service-order/src/test/kotlin/me/bread/order/Fixture.kt rename to order/src/test/kotlin/me/bread/order/Fixture.kt diff --git a/service-order/src/test/kotlin/me/bread/order/OrderApplicationContextTest.kt b/order/src/test/kotlin/me/bread/order/OrderApplicationContextTest.kt similarity index 100% rename from service-order/src/test/kotlin/me/bread/order/OrderApplicationContextTest.kt rename to order/src/test/kotlin/me/bread/order/OrderApplicationContextTest.kt diff --git a/service-order/src/test/kotlin/me/bread/order/application/usecase/CompleteOrderUseCaseTest.kt b/order/src/test/kotlin/me/bread/order/application/usecase/CompleteOrderUseCaseTest.kt similarity index 100% rename from service-order/src/test/kotlin/me/bread/order/application/usecase/CompleteOrderUseCaseTest.kt rename to order/src/test/kotlin/me/bread/order/application/usecase/CompleteOrderUseCaseTest.kt diff --git a/service-order/src/test/kotlin/me/bread/order/application/usecase/PaymentUseCaseTest.kt b/order/src/test/kotlin/me/bread/order/application/usecase/PaymentUseCaseTest.kt similarity index 100% rename from service-order/src/test/kotlin/me/bread/order/application/usecase/PaymentUseCaseTest.kt rename to order/src/test/kotlin/me/bread/order/application/usecase/PaymentUseCaseTest.kt diff --git a/service-order/src/test/kotlin/me/bread/order/application/usecase/PreorderUseCaseTest.kt b/order/src/test/kotlin/me/bread/order/application/usecase/PreorderUseCaseTest.kt similarity index 100% rename from service-order/src/test/kotlin/me/bread/order/application/usecase/PreorderUseCaseTest.kt rename to order/src/test/kotlin/me/bread/order/application/usecase/PreorderUseCaseTest.kt diff --git a/service-order/src/test/kotlin/me/bread/order/domain/common/PhoneNumberTest.kt b/order/src/test/kotlin/me/bread/order/domain/common/PhoneNumberTest.kt similarity index 100% rename from service-order/src/test/kotlin/me/bread/order/domain/common/PhoneNumberTest.kt rename to order/src/test/kotlin/me/bread/order/domain/common/PhoneNumberTest.kt diff --git a/service-order/src/test/kotlin/me/bread/order/integration/OrderIntegrationTest.kt b/order/src/test/kotlin/me/bread/order/integration/OrderIntegrationTest.kt similarity index 100% rename from service-order/src/test/kotlin/me/bread/order/integration/OrderIntegrationTest.kt rename to order/src/test/kotlin/me/bread/order/integration/OrderIntegrationTest.kt diff --git a/http/pay-order.http b/test-http/pay-order.http similarity index 100% rename from http/pay-order.http rename to test-http/pay-order.http diff --git a/http/pre-order.http b/test-http/pre-order.http similarity index 100% rename from http/pre-order.http rename to test-http/pre-order.http