1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![deny(missing_docs)]
#![deny(
    clippy::option_unwrap_used,
    clippy::result_unwrap_used,
    clippy::use_self
)]

//! Control interface for LIFX light bulbs via (eventually LAN and) the internet.

#[macro_use]
extern crate serde_derive;

pub mod common;
pub mod http;