V2bX/core/xray/app/dispatcher/config.proto

16 lines
361 B
Protocol Buffer
Raw Normal View History

2022-06-02 01:35:41 +08:00
syntax = "proto3";
2022-09-04 20:32:56 +08:00
package v2bx.core.app.dispatcher;
option csharp_namespace = "V2bX.core.app.dispatcher";
2023-07-29 19:27:15 +08:00
option go_package = "github.com/InazumaV/V2bX/core/xray/app/dispatcher";
2022-09-04 20:32:56 +08:00
option java_package = "com.v2bx.core.app.dispatcher";
2022-06-02 01:35:41 +08:00
option java_multiple_files = true;
message SessionConfig {
reserved 1;
}
message Config {
SessionConfig settings = 1;
}