divoom-cli 0.1.35

Command line tool for controlling divoom devices.
extern crate winres;

fn main() {
    if cfg!(target_os = "windows") {
        let mut res = winres::WindowsResource::new();
        res.set_icon("assets/Logo-256.ico");
        res.compile().unwrap();
    }
}