From e78884b931587dee5ce0adb71c410d58d29ef390 Mon Sep 17 00:00:00 2001 From: parkjaehak Date: Sat, 1 Feb 2025 12:00:15 +0900 Subject: [PATCH] =?UTF-8?q?CLAP-195=20HotFix:=20deleteComment=20=EC=9D=B8?= =?UTF-8?q?=ED=84=B0=ED=8E=98=EC=9D=B4=EC=8A=A4=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../application/port/outbound/task/CommandCommentPort.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/clap/server/application/port/outbound/task/CommandCommentPort.java b/src/main/java/clap/server/application/port/outbound/task/CommandCommentPort.java index 834732f3..55c74d1b 100644 --- a/src/main/java/clap/server/application/port/outbound/task/CommandCommentPort.java +++ b/src/main/java/clap/server/application/port/outbound/task/CommandCommentPort.java @@ -5,4 +5,6 @@ public interface CommandCommentPort { Comment saveComment(Comment comment); + + void deleteComment(Comment comment); }