Skip to main content

mdwright_lsp/
lib.rs

1#![forbid(unsafe_code)]
2
3mod lsp;
4
5pub use lsp::serve;
6
7#[cfg(test)]
8mod lsp_tests;