kni-rs

Crates.iokni-rs
lib.rskni-rs
version0.1.0
sourcesrc
created_at2021-01-24 03:50:17.603018
updated_at2021-01-24 03:50:17.603018
descriptionA kamar notices interface for rust
homepagehttps://github.com/jacobtread/kni
repositoryhttps://github.com/laspruca/kni-rs
max_upload_size
id345890
size12,977
Connor Hare (LaSpruca)

documentation

https://docs.rs/kni-rs

README

KNI-RS

A rust interface for getting notices from KAMAR
build:passed Crates.io

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(())
}

Part of the KNI project

Commit count: 18

cargo fmt