1 2 3 4 5 6 7 8 9 10 11 12
pub mod api; pub mod lsp; pub mod semantic_analyzer; pub mod authentication; use anyhow::Result; use std::path::PathBuf; pub async fn start(port: u16, path: PathBuf) -> Result<()> { api::serve(port, path).await }