pythonhacktoberfeststeamauthenticationauthenticatorsteam-authenticatorsteam-clientsteam-guard-codessteam-websteamworksvalvewebapi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.6 KiB
51 lines
1.6 KiB
syntax = "proto2";
|
|
import "steammessages_base.proto";
|
|
import "steammessages_unified_base.proto";
|
|
|
|
option py_generic_services = true;
|
|
|
|
message CMsgTest_MessageToClient_Request {
|
|
optional string some_text = 1 [(description) = "Some string."];
|
|
}
|
|
|
|
message CMsgTest_MessageToClient_Response {
|
|
optional string some_text = 1 [(description) = "Some string."];
|
|
}
|
|
|
|
message CMsgTest_NotifyClient_Notification {
|
|
optional string some_text = 1 [(description) = "Some string."];
|
|
}
|
|
|
|
message CMsgTest_MessageToServer_Request {
|
|
optional string some_text = 1 [(description) = "Some string."];
|
|
}
|
|
|
|
message CMsgTest_MessageToServer_Response {
|
|
optional string some_text = 1 [(description) = "Some string."];
|
|
}
|
|
|
|
message CMsgTest_NotifyServer_Notification {
|
|
optional string some_text = 1 [(description) = "Some string."];
|
|
}
|
|
|
|
service TestSteamClient {
|
|
option (service_execution_site) = k_EProtoExecutionSiteSteamClient;
|
|
|
|
rpc MessageToClient (.CMsgTest_MessageToClient_Request) returns (.CMsgTest_MessageToClient_Response) {
|
|
option (method_description) = "Some description - MessageToClient.";
|
|
}
|
|
|
|
rpc NotifyClient (.CMsgTest_NotifyClient_Notification) returns (.NoResponse) {
|
|
option (method_description) = "Some description - NotifyClient.";
|
|
}
|
|
}
|
|
|
|
service TestServerFromClient {
|
|
rpc MessageToServer (.CMsgTest_MessageToServer_Request) returns (.CMsgTest_MessageToServer_Response) {
|
|
option (method_description) = "Some description - MessageToServer.";
|
|
}
|
|
|
|
rpc NotifyServer (.CMsgTest_NotifyServer_Notification) returns (.NoResponse) {
|
|
option (method_description) = "Some description - NotifyServer.";
|
|
}
|
|
}
|
|
|