melcloud-api 0.1.1

Provides a rust interface to the undocumented melcloud API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The api stuff
extern crate reqwest;
extern crate serde_derive;
extern crate serde_json;
extern crate serde;

pub mod errors;
mod types;
mod json;

pub use types::Session;
pub use types::Config;