feat: started api wrapper
This commit is contained in:
parent
02d5446e3e
commit
e8e73e9afe
8 changed files with 217 additions and 11 deletions
8
bot/src/main.rs
Normal file
8
bot/src/main.rs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
use affluences_api::AffluencesClient;
|
||||
|
||||
#[tokio::main]
|
||||
async fn main() {
|
||||
let mut client = AffluencesClient::new();
|
||||
let res = client.available().await.unwrap();
|
||||
println!("{:?}", res);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue