1//! Contains constants used in agent_tk. 2 3/// String name for TST 4pub const TST: &str = "tst"; 5/// String name for goal 6pub const GOAL: &str = "goal"; 7 8/// Length of the task queue for an agent 9pub const TASK_QUEUE_LENGTH: usize = 20;