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),
}
async fn check_ownership(
pub async fn check_ownership(
client: &reqwest::Client,
minecraft_access_token: &str,
) -> Result<bool, CheckOwnershipError> {