raw listener

This commit is contained in:
nora 2022-03-31 22:44:34 +02:00
parent e46bcedb93
commit e5484affdf
4 changed files with 161 additions and 93 deletions

9
src/main.rs Normal file
View file

@ -0,0 +1,9 @@
pub fn main() {
match survey::listener::listener() {
Ok(()) => {}
Err(err) => {
eprintln!("{err}");
std::process::exit(1);
}
}
}