Skip to content

Commit

Permalink
feat: #120 notification api
Browse files Browse the repository at this point in the history
  • Loading branch information
psychology50 committed Mar 2, 2024
1 parent 20bcee5 commit 0a3ac58
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package kr.co.fitapet.api.apis.notification.controller;

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

@Tag(name = "알림 API")
@Slf4j
@RestController
@RequiredArgsConstructor
@RequestMapping("/api/v2/notifications")
public class NotificationApi {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package kr.co.fitapet.api.apis.notification.usecase;

import kr.co.fitapet.common.annotation.UseCase;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;

@Slf4j
@UseCase
@RequiredArgsConstructor
public class NotificationUseCase {
}

0 comments on commit 0a3ac58

Please sign in to comment.