Skip to content

Commit

Permalink
🥕Feat #25: [공통] 신고
Browse files Browse the repository at this point in the history
  • Loading branch information
DDonghyeo committed Jul 23, 2023
1 parent 66af4e8 commit c279691
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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);
}
}

0 comments on commit c279691

Please sign in to comment.