oxide_spark_utils/
command.rs1pub mod led_strip_mode;
2pub mod system_command;
3
4use led_strip_mode::LedStripMode;
5use serde::Deserialize;
6use system_command::SystemCommand;
7
8#[non_exhaustive]
9#[derive(Clone, Copy, Debug, Deserialize)]
10pub enum Command {
11 LedStrip(LedStripMode),
12 System(SystemCommand),
13}