diff --git a/internal/notification/handler.go b/internal/notification/handler.go index 315f573..ede2ad4 100644 --- a/internal/notification/handler.go +++ b/internal/notification/handler.go @@ -50,7 +50,7 @@ func (h *NotificationHandler) Send(c echo.Context) error { } // Send notification - h.service.Send(context.Background(), &req) + go h.service.Send(context.Background(), &req) return response.Created(c, nil, "Notification sent successfully") }