Skip to content

Commit

Permalink
chore : ReportController ์„ธํŒ…
Browse files Browse the repository at this point in the history
  • Loading branch information
yel-m committed May 24, 2024
1 parent 9cd3baf commit b5ff369
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.hobak.happinessql.domain.report.api;


import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@Tag(name="Report", description = "ํ–‰๋ณต ๋ถ„์„ ๋ฆฌํฌํŠธ ๊ด€๋ จ REST API์— ๋Œ€ํ•œ ๋ช…์„ธ๋ฅผ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค.")
@RestController
@RequiredArgsConstructor
@RequestMapping("api/my-report")
public class ReportController {

}

0 comments on commit b5ff369

Please sign in to comment.