Skip to main content

Mountain/Workspace/WorkspaceFileService/
WorkspaceFolderEntry.rs

1#![allow(non_snake_case)]
2
3//! Single `folders` entry in a `.code-workspace` JSON document. Path is
4//! relative to the workspace file's parent directory.
5
6use serde::Deserialize;
7
8#[derive(Deserialize, Debug)]
9pub(super) struct Struct {
10	pub(super) path:String,
11}