rename Server/server to rvsttd

This commit is contained in:
2026-08-13 09:59:31 +00:00
parent facbfe6a5c
commit 7765c6967c
3 changed files with 3 additions and 3 deletions
@@ -1,10 +1,10 @@
[package] [package]
name = "robovoice-stt-server" name = "rvsttd"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
[[bin]] [[bin]]
name = "robovoice-stt-server" name = "rvsttd"
path = "src/main.rs" path = "src/main.rs"
[dependencies] [dependencies]
@@ -365,7 +365,7 @@ fn main() -> Result<()> {
model_dir = args.next().unwrap_or(model_dir); model_dir = args.next().unwrap_or(model_dir);
} }
"--help" | "-h" => { "--help" | "-h" => {
println!("Usage: robovoice-stt-server [--model-dir DIR]"); println!("Usage: rvsttd [--model-dir DIR]");
println!("Listens on TCP {}", BIND_ADDR); println!("Listens on TCP {}", BIND_ADDR);
println!("Model: medium-streaming (Moonshine)"); println!("Model: medium-streaming (Moonshine)");
return Ok(()); return Ok(());