Files
golgi/src/main.rs
2021-12-02 15:12:52 +02:00

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);
}
}