1 2 3 4 5 6 7 8
use anyhow::Result; use tatara_core::config::ServerConfig; pub async fn run(config_path: Option<&str>) -> Result<()> { let config = ServerConfig::load(config_path)?; crate::server::run(config).await }