1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-07-01 10:11:44 +02:00
GiantsTools/Giants.Services/Services/ICrashReportService.cs

12 lines
304 B
C#
Raw Normal View History

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);
}
}