mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-10-31 21:05:38 +01:00
12 lines
304 B
C#
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);
|
|
}
|
|
}
|