1 2 3 4 5 6 7 8 9
// LSP command - start language server use crate::cli::args::LspArgs; use crate::lsp::server::start_lsp_server; use anyhow::Result; pub async fn handle_lsp(_args: &LspArgs) -> Result<()> { start_lsp_server().await }