2021-04-08 13:39:15 +01:00
|
|
|
// Copyright (C) 2021 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
syntax = "proto3";
|
|
|
|
option go_package = "storj.io/storj/private/crashreportpb";
|
|
|
|
|
|
|
|
package crash;
|
|
|
|
|
|
|
|
service CrashReport {
|
|
|
|
rpc Report(ReportRequest) returns(ReportResponse) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
message ReportRequest {
|
2021-04-26 20:00:05 +01:00
|
|
|
bytes gzipped_panic = 1;
|
2021-04-08 13:39:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
message ReportResponse {}
|