A rust crate for communicating with the energenie API
This library aims to make communication with the energenie MiHome system easy from a rust application. Usage
``` extern crate energenie;
fn main() { let api = energenie::Api::new(); api.some_action() } ```