mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 09:17:55 -04:00
11 lines
248 B
Protocol Buffer
11 lines
248 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package v2ray.core.common.loader;
|
||
|
option go_package = "loader";
|
||
|
option java_package = "com.v2ray.core.common.loader";
|
||
|
option java_outer_classname = "TypeProto";
|
||
|
|
||
|
message TypedSettings {
|
||
|
string type = 1;
|
||
|
bytes settings = 2;
|
||
|
}
|