Initial version

This commit is contained in:
Lol3rrr
2024-09-15 05:09:15 +02:00
commit c7aa4dbe8c
489 changed files with 124650 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
import "common_base.proto";
message CAccountPrivateAppList {
repeated int32 appids = 1;
}
message CAccountPrivateApps_GetPrivateAppList_Request {
}
message CAccountPrivateApps_GetPrivateAppList_Response {
optional .CAccountPrivateAppList private_apps = 1;
}
message CAccountPrivateApps_ToggleAppPrivacy_Request {
repeated int32 appids = 1;
optional bool private = 2;
}
message CAccountPrivateApps_ToggleAppPrivacy_Response {
}
message CAccountPrivateApsClient_NotifyPrivateAppListChanged_Notification {
optional .CAccountPrivateAppList private_apps = 1;
}
service AccountPrivateApps {
rpc GetPrivateAppList (.CAccountPrivateApps_GetPrivateAppList_Request) returns (.CAccountPrivateApps_GetPrivateAppList_Response);
rpc ToggleAppPrivacy (.CAccountPrivateApps_ToggleAppPrivacy_Request) returns (.CAccountPrivateApps_ToggleAppPrivacy_Response);
}
service AccountPrivateAppsClient {
rpc NotifyPrivateAppListChanged (.CAccountPrivateApsClient_NotifyPrivateAppListChanged_Notification) returns (.NoResponse);
}