mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 14:21:44 +00:00
9 lines
238 B
Rust
9 lines
238 B
Rust
mod caps;
|
|
mod conv;
|
|
mod main_loop;
|
|
mod project_model;
|
|
pub mod req;
|
|
mod server_world;
|
|
|
|
pub type Result<T> = ::std::result::Result<T, ::failure::Error>;
|
|
pub use crate::{caps::server_capabilities, main_loop::main_loop, main_loop::LspError};
|