mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
12 lines
310 B
Protocol Buffer
12 lines
310 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package clash.transport.vless;
|
||
|
option csharp_namespace = "Clash.Transport.Vless";
|
||
|
option go_package = "github.com/Dreamacro/clash/transport/vless";
|
||
|
option java_package = "com.clash.transport.vless";
|
||
|
option java_multiple_files = true;
|
||
|
|
||
|
message Addons {
|
||
|
string Flow = 1;
|
||
|
bytes Seed = 2;
|
||
|
}
|