mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-21 02:39:41 +00:00
16 lines
265 B
Protocol Buffer
16 lines
265 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
// Copyright 2020-2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
package signalservice;
|
|
|
|
message CrashReport {
|
|
string filename = 1;
|
|
bytes content = 2;
|
|
}
|
|
|
|
message CrashReportList {
|
|
repeated CrashReport reports = 1;
|
|
}
|