mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
18 lines
423 B
Protocol Buffer
18 lines
423 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package v2ray.core.app.log.command;
|
||
|
option csharp_namespace = "V2Ray.Core.App.Log.Command";
|
||
|
option go_package = "command";
|
||
|
option java_package = "com.v2ray.core.app.log.command";
|
||
|
option java_multiple_files = true;
|
||
|
|
||
|
message Config {
|
||
|
}
|
||
|
|
||
|
message RestartLoggerRequest {}
|
||
|
|
||
|
message RestartLoggerResponse{}
|
||
|
|
||
|
service LoggerService {
|
||
|
rpc RestartLogger(RestartLoggerRequest) returns (RestartLoggerResponse) {}
|
||
|
}
|