// Point d'entree principal de l'application. use anyhow::Result; use tracing::info; use pilot_v2::config; use pilot_v2::runtime::Runtime; #[tokio::main] async fn main() -> Result<()> { tracing_subscriber::fmt() .with_env_filter("pilot_v2=info") .init(); let config = config::load()?; info!("config loaded"); let runtime = Runtime::new(config); runtime.run().await }