11 lines
195 B
Rust
11 lines
195 B
Rust
pub enum Commands {
|
|
SetActivity,
|
|
}
|
|
|
|
impl Commands {
|
|
pub fn as_string(&self) -> String {
|
|
match self {
|
|
Commands::SetActivity => "SET_ACTIVITY".into(),
|
|
}
|
|
}
|
|
}
|