Nature Remo for Rust
Nature Remo API client for Rust.
WARNING: This project is in heavily development state and not intended for production use.
Installation
cargo add remo
Usage
extern crate remo;
use cloud;
Nature Remo API client for Rust.
WARNING: This project is in heavily development state and not intended for production use.
cargo add remo
extern crate remo;
use remo::cloud;
fn main() {
let client = cloud::Client::new("<token>");
let user = client.get_user()?
println!("Name: {}", user.nickname)
}