remo 0.1.0

Nature Remo API client
Documentation

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 remo::cloud;

fn main() {
  let client = cloud::Client::new("<token>");
  let user = client.get_user()?
  println!("Name: {}", user.nickname)
}