Crates.io | kni-rs |
lib.rs | kni-rs |
version | 0.1.0 |
source | src |
created_at | 2021-01-24 03:50:17.603018 |
updated_at | 2021-01-24 03:50:17.603018 |
description | A kamar notices interface for rust |
homepage | https://github.com/jacobtread/kni |
repository | https://github.com/laspruca/kni-rs |
max_upload_size | |
id | 345890 |
size | 12,977 |
This is an iterface for accessing the KAMAR API in rust to retrieve the notices
Example Usage:
use kni_rs::Portal;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let portal = Portal::new("https://demo.school.kiwi");
let notices = protal.get_notices_today().await?;
println!("Notices: {:?}", notices);
Ok(())
}