collection_service/src/bin/run_server.rs

8 lines
145 B
Rust
Raw Normal View History

2026-03-10 14:21:23 +03:00
use rust_tripping::run_server;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
run_server().await?;
Ok(())
}