1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-06-26 08:01:45 +02:00
GiantsTools/Giants.Services/Services/ICrashReportService.cs
2020-09-01 11:04:22 -07:00

12 lines
304 B
C#

namespace Giants.Services.Services
{
using System.IO;
using System.Threading.Tasks;
public interface ICrashReportService
{
Task UploadMinidumpToSentry(string fileName, Stream stream);
Task ProcessReport(string fileName, string senderIpAddress, Stream stream);
}
}