doot/crates/doot-cli/src/commands/lsp.rs
2026-02-06 03:31:45 -06:00

8 lines
260 B
Rust

/// Starts the doot language server.
#[tracing::instrument]
pub fn run() -> anyhow::Result<()> {
println!("doot language server");
println!("LSP support is not yet implemented");
println!("\nfor now, use 'doot check' for validation");
Ok(())
}