pict-rs/src/main.rs

7 lines
123 B
Rust
Raw Normal View History

2021-10-23 04:48:56 +00:00
#[actix_rt::main]
2022-03-29 01:47:46 +00:00
async fn main() -> color_eyre::Result<()> {
2022-12-23 18:56:15 +00:00
pict_rs::install_tracing()?;
2022-12-23 18:56:15 +00:00
pict_rs::run().await
}