mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 09:17:55 -04:00
14 lines
398 B
Protocol Buffer
14 lines
398 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";
|
|
|
|
// Serialized proto message along with its type name.
|
|
message TypedSettings {
|
|
// The name of the message type, retrieved from protobuf API.
|
|
string type = 1;
|
|
// Serialized proto message.
|
|
bytes settings = 2;
|
|
} |