Changes
Build and Push Docker Images / build (push) Failing after 28s

This commit is contained in:
2026-05-06 17:45:05 +03:00
parent 64b0219038
commit b154fe51c3
15 changed files with 50 additions and 110 deletions
+1
View File
@@ -7,5 +7,6 @@ namespace Api.Services.Contracts
Task SendContactAsync(ContactRequest req, CancellationToken ct);
Task SendSubscribeAsync(SubscribeRequest req, CancellationToken ct);
Task SendFileDownloadNotificationAsync(string fileName, string? userIp, CancellationToken ct);
Task SendMatchAsync(string? explicitTo, string subject, string body, CancellationToken ct);
}
}
+5
View File
@@ -166,5 +166,10 @@ namespace Api.Services
await client.SendAsync(message, ct);
await client.DisconnectAsync(true, ct);
}
public Task SendMatchAsync(string? explicitTo, string subject, string body, CancellationToken ct)
{
throw new NotImplementedException();
}
}
}