mirror of
https://github.com/Noratrieb/survey.git
synced 2026-01-14 16:35:09 +01:00
9 lines
185 B
Rust
9 lines
185 B
Rust
pub fn main() {
|
|
match survey::listener::listener() {
|
|
Ok(()) => {}
|
|
Err(err) => {
|
|
eprintln!("{err}");
|
|
std::process::exit(1);
|
|
}
|
|
}
|
|
}
|