Tweak styling in protobuf selector, fix html drag and drop in tauri
This commit is contained in:
16
test.proto
16
test.proto
@@ -1,6 +1,9 @@
|
||||
syntax="proto3";
|
||||
|
||||
message Test {
|
||||
message NestedMessage {
|
||||
string nested = 1;
|
||||
}
|
||||
string hello = 1;
|
||||
int32 hello2 = 2;
|
||||
int64 hello3 = 3;
|
||||
@@ -9,4 +12,15 @@ message Test {
|
||||
bool hello6 = 6;
|
||||
repeated string hello7 = 7;
|
||||
map<string, string> hello8 = 8;
|
||||
}
|
||||
ReferenceMessage hello9 = 9;
|
||||
NestedMessage hello10 = 10;
|
||||
EnumTest enum_test = 11;
|
||||
}
|
||||
|
||||
message ReferenceMessage {
|
||||
string test = 1;
|
||||
}
|
||||
|
||||
enum EnumTest {
|
||||
Hello = 0;
|
||||
}
|
||||
Reference in New Issue
Block a user