Skip to main content

Mountain/RPC/
Workspace.rs

1
2//! Workspace RPC service. `WorkspaceService::Struct` is the impl handle;
3//! `WorkspaceFolder::Struct` and `TextDocumentInfo::Struct` are the DTOs
4//! returned over the wire.
5
6pub mod TextDocumentInfo;
7
8pub mod WorkspaceFolder;
9
10pub mod WorkspaceService;