1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-06-29 01:01:45 +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);
}
}