pict-rs/src/main.rs

8 lines
173 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<()> {
2023-07-22 17:39:39 +00:00
pict_rs::PictRsConfiguration::build_default()?
.install_tracing()?
.run()
.await
}