mirror of
https://github.com/XrayR-project/XrayR.git
synced 2025-06-08 13:29:54 +00:00
16 lines
353 B
Protocol Buffer
16 lines
353 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xrayr.app.mydispatcher;
|
|
option csharp_namespace = "XrayR.App.Mydispatcher";
|
|
option go_package = "github.com/XrayR-project/XrayR/app/mydispatcher";
|
|
option java_package = "com.xrayr.app.mydispatcher";
|
|
option java_multiple_files = true;
|
|
|
|
message SessionConfig {
|
|
reserved 1;
|
|
}
|
|
|
|
message Config {
|
|
SessionConfig settings = 1;
|
|
}
|