pub const MANUAL_RESTART_SHORTCUT: &str = "rs";
pub fn display_manual_restart_tip() -> String {
"To restart at any time, enter `rs`.".to_string()
}
pub fn is_manual_restart_input(input: impl AsRef<str>) -> bool {
input.as_ref().trim() == MANUAL_RESTART_SHORTCUT
}