8 lines
260 B
Rust
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(())
|
|
}
|