storj/private/crashreportpb/crashreport.proto

18 lines
340 B
Protocol Buffer
Raw Normal View History

// 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 {
bytes gzipped_panic = 1;
}
message ReportResponse {}