7 lines
223 B
Rust
7 lines
223 B
Rust
#[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(())
|
|
}
|