1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
use anyhow::Result; use code_mesh_tui::{App, Config}; #[tokio::main] async fn main() -> Result<()> { // Initialize logging tracing_subscriber::fmt::init(); // Load configuration let config = Config::load_or_default(); // Create and run the application let mut app = App::new(config).await?; app.run().await?; Ok(()) }