mirror of
https://github.com/coder3101/protols.git
synced 2025-12-23 05:36:51 +00:00
- [x] Update README - [x] Tag and release v0.6.0 - [x] Format temporary file not original file
11 lines
158 B
Protocol Buffer
11 lines
158 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package a.b.c;
|
|
|
|
message CustomType { bool attribute = 1; }
|
|
|
|
message SomeMessage {
|
|
int64 someAttribute = 1;
|
|
|
|
CustomType another = 2;
|
|
}
|