mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
13 lines
164 B
Protocol Buffer
13 lines
164 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option php_class_prefix = "Prefix";
|
|
|
|
message TestPrefix {
|
|
int32 a = 1;
|
|
}
|
|
|
|
// Test prefix for reserved words.
|
|
message Empty {
|
|
int32 a = 1;
|
|
}
|