osu: Move core library to async

This commit is contained in:
Natsu Kagami 2020-09-05 21:31:03 -04:00
parent 9e38f88e97
commit b7d398c05a
No known key found for this signature in database
GPG key ID: F17543D4B9424B94
4 changed files with 40 additions and 25 deletions

View file

@ -1,6 +1,6 @@
use crate::models::{Mode, Mods};
use chrono::{DateTime, Utc};
use reqwest::blocking::{Client, RequestBuilder};
use reqwest::{Client, RequestBuilder};
trait ToQuery {
fn to_query(&self) -> Vec<(&'static str, String)>;