- POST /v1/in/push/send (단건 발송) - POST /v1/in/push/send/tag (태그 발송) - PushService: 메시지 조회 → 변수 치환 → RabbitMQ 큐 발행 - MessageNotFound(151) 에러 코드 추가 Closes #114
10 lines
287 B
C#
10 lines
287 B
C#
using SPMS.Application.DTOs.Push;
|
|
|
|
namespace SPMS.Application.Interfaces;
|
|
|
|
public interface IPushService
|
|
{
|
|
Task<PushSendResponseDto> SendAsync(long serviceId, PushSendRequestDto request);
|
|
Task<PushSendResponseDto> SendByTagAsync(long serviceId, PushSendTagRequestDto request);
|
|
}
|