1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-20 10:56:07 -04:00
v2fly/common/protoext/testing/test.proto

18 lines
665 B
Protocol Buffer
Raw Normal View History

2021-06-23 04:52:33 -04:00
syntax = "proto3";
package v2ray.core.common.protoext.testing;
option csharp_namespace = "V2Ray.Core.Common.ProtoExt.Testing";
option go_package = "github.com/v2fly/v2ray-core/common/protoext/testing";
option java_package = "com.v2ray.core.common.protoext.testing";
option java_multiple_files = true;
import "common/protoext/extensions.proto";
message TestingMessage{
option (v2ray.core.common.protoext.message_opt).type = "demo";
option (v2ray.core.common.protoext.message_opt).type = "demo2";
string test_field = 1
[(v2ray.core.common.protoext.field_opt).allowed_values = "test",
(v2ray.core.common.protoext.field_opt).allowed_values = "test2"];
}