aboutsummaryrefslogtreecommitdiff
path: root/src/commands/osu.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/osu.rs')
-rw-r--r--src/commands/osu.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/commands/osu.rs b/src/commands/osu.rs
index 8d91f56..5e0b563 100644
--- a/src/commands/osu.rs
+++ b/src/commands/osu.rs
@@ -18,6 +18,9 @@ struct OsuTokenRequest {
pub scope: String,
}
+/// This is kinda loose, and we should really be caching the osu token
+///
+/// Eh well, this *works* (sort of)
async fn setup_reqwest() -> Result<reqwest::Client, Error> {
let client_id = std::env::var("OSU_CLIENT_ID").unwrap();
let client_secret = std::env::var("OSU_CLIENT_SECRET").unwrap();