mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-05-30 17:53:35 -07:00
8 lines
177 B
Rust
8 lines
177 B
Rust
#[tokio::main(flavor = "current_thread")]
|
|
async fn main() {
|
|
if let Err(e) = installer::main_cli().await {
|
|
eprintln!("{e:?}");
|
|
std::process::exit(1);
|
|
}
|
|
}
|