http://toornament.com api bindings.
Everything is implemented. Note, that the toornament
service API is at early stages of development
and in beta stage, the library will try to be up-to-date.
There is a book and the documentation which may help you using this library.
reqwest
crate is used for performing requestsStart by creating Toornament
instance and perform needed operations after.
```rust,no_run extern crate toornament; use toornament::*;
fn main() { let t = Toornament::withapplication("APITOKEN", "CLIENTID", "CLIENTSECRET") .unwrap(); assert!(t.disciplines(None).is_ok()); } ```
More examples are in the
documentation and in the
examples/
subdirectory
This project is licensed under the MIT license.