#![cfg(target_os = "windows")]
use hotline_rs::*;
use hotline_rs::client::*;
fn main() -> Result<(), hotline_rs::Error> {
let ctx : Client<gfx_platform::Device, os_platform::App> = Client::create(HotlineInfo {
..Default::default()
})?;
if let Err(e) = ctx.run() {
println!("error: {}", e.msg);
};
Ok(())
}