The official iLert api bindings.
```rust use ilert::ilert::ILert; use ilert::ilert_builders::{EventApiResource, ILertEventType};
let mut client = ILert::new().unwrap(); client.authviatoken("your-api-token").unwrap();
let event_result = client .post() .event( "44c7afdc-0b3e-4344-b48a-5379a963231f", ILertEventType::ALERT, "Host srv/mail01 is CRITICAL", None, None) .execute() .unwrap();
let user_result = client .get() .users() .execute() .unwrap(); ```
We are happy to respond to GitHub issues as well.
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Serde by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.