mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
10 lines
106 B
Protocol Buffer
10 lines
106 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message Empty {
|
|
}
|
|
|
|
message MessageWithEmpty {
|
|
Empty empty = 1;
|
|
string str = 2;
|
|
};
|