mirror of
https://github.com/Astatin3/unshell.git
synced 2026-06-09 06:47:59 -06:00
16 lines
647 B
Rust
16 lines
647 B
Rust
|
|
use crate::obfuscate::symbol;
|
||
|
|
|
||
|
|
pub const LOGGER: &'static str = symbol!("Logger");
|
||
|
|
|
||
|
|
pub const TYPE_TREE: &'static str = symbol!("Tree");
|
||
|
|
pub const TYPE_QUEUE: &'static str = symbol!("Queue");
|
||
|
|
|
||
|
|
pub const CMD_GET: &'static str = symbol!("Get");
|
||
|
|
pub const CMD_POLL: &'static str = symbol!("Poll");
|
||
|
|
pub const CMD_GET_LENGTH: &'static str = symbol!("GetLength");
|
||
|
|
pub const CMD_GET_CHILDREN: &'static str = symbol!("GetChildren");
|
||
|
|
|
||
|
|
pub const ERR_UNSUPPORTED_METHOD: &'static str = symbol!("UnsupportedMethod");
|
||
|
|
pub const ERR_INVALID_COMMAND: &'static str = symbol!("InvalidCommand");
|
||
|
|
pub const ERR_INVALID_CHILD: &'static str = symbol!("InvalidChild");
|