protols/sample/test.proto
Ashar c36b05bf1a
feat: add doc and range formatting if clang-format is available (#27)
- [x] Update README
- [x] Tag and release v0.6.0
- [x] Format temporary file not original file
2024-09-01 15:34:40 +05:30

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;
}