15 lines
806 B
Rust
15 lines
806 B
Rust
/* rustfmt wants to make the formatting worse.. */
|
|
#![cfg_attr(rustfmt, rustfmt_skip)]
|
|
|
|
use uuid::{uuid, Uuid};
|
|
|
|
pub const RELAX: Uuid = uuid!("a1f7da49-d181-4328-abea-68c9dc4b5416");
|
|
pub const NIGHT_LIGHT: Uuid = uuid!("28bbfeff-1a0c-444e-bb4b-0b74b88e0c95");
|
|
pub const DIMMED: Uuid = uuid!("8c74b9ba-6e89-4083-a2a7-b10a1e566fed");
|
|
pub const ENERGIZE: Uuid = uuid!("7fd2ccc5-5749-4142-b7a5-66405a676f03");
|
|
pub const READ: Uuid = uuid!("e101a77f-9984-4f61-aac8-15741983c656");
|
|
pub const COOL_BRIGHT: Uuid = uuid!("dbccef2b-096e-49df-93c2-726665e80b26");
|
|
pub const BRIGHT: Uuid = uuid!("732ff1d9-76a7-4630-aad0-c8acc499bb0b");
|
|
pub const REST: Uuid = uuid!("11a09ad5-8d65-4e90-959b-f05981a9ab1b");
|
|
pub const CONCENTRATE: Uuid = uuid!("b90c8900-a6b7-422c-a5d3-e170187dbf8c");
|