agnix-lsp 0.3.0

Language Server Protocol implementation for agnix
Documentation
1
2
3
4
5
6
7
#[tokio::main]
async fn main() {
    if let Err(e) = agnix_lsp::start_server().await {
        eprintln!("LSP server error: {e}");
        std::process::exit(1);
    }
}