From cacb04718dd4142bded181d004f1fa40fe7ae178 Mon Sep 17 00:00:00 2001 From: veronoicc <64193056+veronoicc@users.noreply.github.com> Date: Thu, 28 Dec 2023 22:50:55 +0100 Subject: [PATCH] Make check_ownership pub (#126) --- azalea-auth/src/auth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azalea-auth/src/auth.rs b/azalea-auth/src/auth.rs index efb0daa1..67a45aa3 100755 --- a/azalea-auth/src/auth.rs +++ b/azalea-auth/src/auth.rs @@ -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 {