2
0
Fork 0
mirror of https://git.asonix.dog/asonix/pict-rs synced 2024-11-10 14:34:57 +00:00
pict-rs/src/main.rs

9 lines
202 B
Rust
Raw Normal View History

#[actix_web::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()?
2023-07-22 21:47:59 +00:00
.install_metrics()?
2023-07-22 17:39:39 +00:00
.run()
.await
}