1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 14:26:04 +00:00

Make check_ownership pub (#126)

This commit is contained in:
veronoicc 2023-12-28 22:50:55 +01:00 committed by GitHub
parent ddf85a1be7
commit cacb04718d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -522,7 +522,7 @@ pub enum CheckOwnershipError {
Http(#[from] reqwest::Error), Http(#[from] reqwest::Error),
} }
async fn check_ownership( pub async fn check_ownership(
client: &reqwest::Client, client: &reqwest::Client,
minecraft_access_token: &str, minecraft_access_token: &str,
) -> Result<bool, CheckOwnershipError> { ) -> Result<bool, CheckOwnershipError> {