fix conflict

This commit is contained in:
yoan
2024-11-15 10:27:10 +08:00
17 changed files with 402 additions and 15 deletions

View File

@@ -30,7 +30,7 @@ func NewNotifyHandler(route *echo.Group, service NotifyService) {
func (handler *notifyHandler) test(c echo.Context) error {
req := &domain.NotifyTestPushReq{}
if err := c.Bind(req); err != nil {
return err
return resp.Err(c, err)
}
if err := handler.service.Test(c.Request().Context(), req); err != nil {