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