2026-02-20 15:47:58 -07:00
|
|
|
use crate::obfuscate::sym;
|
2026-02-09 10:27:15 -07:00
|
|
|
|
2026-02-20 15:47:58 -07:00
|
|
|
pub const LOGGER: &'static str = sym!("Logger");
|
2026-02-09 10:27:15 -07:00
|
|
|
|
2026-02-20 15:47:58 -07:00
|
|
|
pub const TYPE_TREE: &'static str = sym!("Tree");
|
|
|
|
|
pub const TYPE_QUEUE: &'static str = sym!("Queue");
|
2026-02-09 10:27:15 -07:00
|
|
|
|
2026-02-20 15:47:58 -07:00
|
|
|
pub const CMD_GET: &'static str = sym!("Get");
|
|
|
|
|
pub const CMD_POLL: &'static str = sym!("Poll");
|
|
|
|
|
pub const CMD_GET_LENGTH: &'static str = sym!("GetLength");
|
|
|
|
|
pub const CMD_GET_CHILDREN: &'static str = sym!("GetChildren");
|
2026-02-09 10:27:15 -07:00
|
|
|
|
2026-02-20 15:47:58 -07:00
|
|
|
pub const ERR_UNSUPPORTED_METHOD: &'static str = sym!("UnsupportedMethod");
|
|
|
|
|
pub const ERR_INVALID_COMMAND: &'static str = sym!("InvalidCommand");
|
|
|
|
|
pub const ERR_INVALID_CHILD: &'static str = sym!("InvalidChild");
|