From 5d5f9d78aafd5a923f143e8ce7277b1542402310 Mon Sep 17 00:00:00 2001 From: kyubeomHan Date: Fri, 16 Aug 2024 17:20:24 +0900 Subject: [PATCH] =?UTF-8?q?#2=20=ED=97=A5=EC=82=AC=EA=B3=A0=EB=82=A0=20?= =?UTF-8?q?=EC=95=84=ED=82=A4=ED=85=8D=EC=B3=90=20=EC=8B=9C=EB=B2=94=20?= =?UTF-8?q?=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/kotlin/com/core/adapter/in/web/dto/GetFoodReq.kt | 4 ++++ .../main/kotlin/com/core/application/port/out/GetFoodPort.kt | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 core/src/main/kotlin/com/core/adapter/in/web/dto/GetFoodReq.kt create mode 100644 core/src/main/kotlin/com/core/application/port/out/GetFoodPort.kt diff --git a/core/src/main/kotlin/com/core/adapter/in/web/dto/GetFoodReq.kt b/core/src/main/kotlin/com/core/adapter/in/web/dto/GetFoodReq.kt new file mode 100644 index 0000000..311bbd2 --- /dev/null +++ b/core/src/main/kotlin/com/core/adapter/in/web/dto/GetFoodReq.kt @@ -0,0 +1,4 @@ +package com.core.adapter.`in`.web.dto + +class GetFoodReq { +} \ No newline at end of file diff --git a/core/src/main/kotlin/com/core/application/port/out/GetFoodPort.kt b/core/src/main/kotlin/com/core/application/port/out/GetFoodPort.kt new file mode 100644 index 0000000..c9353b9 --- /dev/null +++ b/core/src/main/kotlin/com/core/application/port/out/GetFoodPort.kt @@ -0,0 +1,4 @@ +package com.core.application.port.out + +interface GetFoodPort { +} \ No newline at end of file