diff --git a/src/main/java/com/umc/DongnaeFriend/global/report/controller/ReportController.java b/src/main/java/com/umc/DongnaeFriend/global/report/controller/ReportController.java new file mode 100644 index 0000000..cda1bf4 --- /dev/null +++ b/src/main/java/com/umc/DongnaeFriend/global/report/controller/ReportController.java @@ -0,0 +1,16 @@ +package com.umc.DongnaeFriend.global.report.controller; + +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +@RestController +@RequestMapping("/accuse") +public class ReportController { + + public ResponseEntity reportBoard(@RequestBody int id) { + return new ResponseEntity<>(HttpStatus.OK); + } +}