1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-19 14:57:04 +00:00

Auto-format protobuf files

This patch runs clang-format on the protobuf files, and also adds a
Makefile target for auto-formatting code (Go and protobuf) for
convenience.
This commit is contained in:
Alberto Bertogli
2023-10-03 23:29:21 +01:00
parent d57037273c
commit 8ded1f6f5e
5 changed files with 20 additions and 10 deletions

View File

@@ -49,10 +49,9 @@ message Recipient {
// We used to use the well-known type, but the dependency makes packaging much
// more convoluted and adds very little value, so we now just include it here.
message Timestamp {
// Represents seconds of UTC time since Unix epoch.
int64 seconds = 1;
// Represents seconds of UTC time since Unix epoch.
int64 seconds = 1;
// Non-negative fractions of a second at nanosecond resolution.
int32 nanos = 2;
// Non-negative fractions of a second at nanosecond resolution.
int32 nanos = 2;
}