Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.

Commit bf2b201

Browse files
committed
Add test proto file
1 parent 4cb4e21 commit bf2b201

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
syntax = "proto3";
2+
3+
package validation;
4+
5+
message Message {
6+
int32 int32_value = 1;
7+
int64 int64_value = 2;
8+
uint32 uint32_value = 3;
9+
uint64 uint64_value = 4;
10+
sint32 sint32_value = 5;
11+
sint64 sint64_value = 6;
12+
fixed32 fixed32_value = 7;
13+
fixed64 fixed64_value = 8;
14+
sfixed32 sfixed32_value = 9;
15+
sfixed64 sfixed64_value = 10;
16+
17+
float float_value = 11;
18+
19+
string string_value = 12;
20+
}

0 commit comments

Comments
 (0)