()
| 3 | |
| 4 | #[tokio::main] |
| 5 | async fn main() -> Result<(), handle_errors::Error> { |
| 6 | dotenvy::dotenv().ok(); |
| 7 | |
| 8 | let config = config::Config::new().expect("Config can't be set"); |
| 9 | let store = setup_store(&config).await?; |
| 10 | |
| 11 | tracing::info!("Q&A service build ID {}", env!("RUST_WEB_DEV_VERSION")); |
| 12 | |
| 13 | run(config, store).await; |
| 14 | |
| 15 | Ok(()) |
| 16 | } |
nothing calls this directly
no test coverage detected