Mountain/RPC/Workspace.rs
1#![allow(non_snake_case)]
2
3//! Workspace RPC service. `WorkspaceService::Struct` is the impl handle;
4//! `WorkspaceFolder::Struct` and `TextDocumentInfo::Struct` are the DTOs
5//! returned over the wire.
6
7pub mod TextDocumentInfo;
8pub mod WorkspaceFolder;
9pub mod WorkspaceService;