This is an iterface for accessing the KAMAR API in rust to retrieve the notices
Example Usage:
```rust use kni_rs::Portal;
async fn main() -> Result<(), Box> { let portal = Portal::new("https://demo.school.kiwi"); let notices = protal.getnoticestoday().await?;
println!("Notices: {:?}", notices); Ok(())
} ```
Part of the KNI project