This commit is contained in:
MeexReay 2025-02-09 12:06:53 +03:00
parent f2f44a3d2f
commit 204c73cf76

View File

@ -112,7 +112,7 @@ fn get_input(prompt: &str, default: &str) -> String {
fn main() { fn main() {
let host = get_input(&format!("Host (default: {}) > ", DEFAULT_HOST), DEFAULT_HOST); let host = get_input(&format!("Host (default: {}) > ", DEFAULT_HOST), DEFAULT_HOST);
let prefix = get_input("Prefix (default: none) > ", ""); let name = get_input("Name (default: none) > ", "");
thread::spawn({ thread::spawn({
let host = host.clone(); let host = host.clone();