V0 #1

Closed
RusticMaple wants to merge 105 commits from v0 into main
2 changed files with 6 additions and 0 deletions
Showing only changes of commit b503363e56 - Show all commits

add check setting status

Maple 2026-04-11 20:24:13 +02:00

View file

@ -143,6 +143,10 @@ impl Friends for FriendsUser {
false,
))
}
async fn check_setting_status(&self) -> Result<u8, ErrorCode> {
Ok(0xFF)
}
}
impl Secure for FriendsUser {

View file

@ -143,4 +143,6 @@ pub trait Friends {
),
ErrorCode,
>;
#[method_id(19)]
async fn check_setting_status(&self) -> Result<u8, ErrorCode>;
}