This commit is contained in:
Filipriec
2026-04-21 16:27:20 +02:00
parent b752af8c7b
commit a3eb797be0
6 changed files with 677 additions and 4 deletions

19
protos/transport.proto Normal file
View File

@@ -0,0 +1,19 @@
syntax = "proto3";
package ahoj;
message Example {
int32 f_int32 = 1;
int64 f_int64 = 2;
uint32 f_uint32 = 3;
uint64 f_uint64 = 4;
sint32 f_sint32 = 5;
sint64 f_sint64 = 6;
bool f_bool = 7;
fixed32 f_fixed32 = 8;
fixed64 f_fixed64 = 9;
sfixed32 f_sfixed32 = 10;
sfixed64 f_sfixed64 = 11;
float f_float = 12;
double f_double = 13;
}