1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 09:25:23 +00:00
v2fly/common/protoext/testing/test.proto
2021-09-04 11:13:31 +01:00

18 lines
665 B
Protocol Buffer

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