10 lines
178 B
Rust
10 lines
178 B
Rust
use std::process;
|
|
|
|
#[async_std::main]
|
|
async fn main() {
|
|
if let Err(e) = golgi::run().await {
|
|
eprintln!("Application error: {}", e);
|
|
process::exit(1);
|
|
}
|
|
}
|