Files
csdemo/Protobufs/webui/service_transportauth.proto
2024-09-15 05:09:15 +02:00

18 lines
440 B
Protocol Buffer

import "common_base.proto";
message CTransportAuth_Authenticate_Request {
optional string auth_key = 1;
}
message CTransportAuth_Authenticate_Response {
}
message CTransportAuth_StartShutdown_Notification {
}
service TransportAuth {
rpc Authenticate (.CTransportAuth_Authenticate_Request) returns (.CTransportAuth_Authenticate_Response);
rpc NotifyStartShutdown (.CTransportAuth_StartShutdown_Notification) returns (.NoResponse);
}