enhancementgood first issue
仓库指标
- Star
- (348 star)
- PR 合并指标
- (PR 指标待抓取)
描述
Like this for example:
pub enum PathTemplate {
/// Create a file with default content
File {
path: String,
content: String,
},
/// Create a folder
Folder {
path: String,
template_structure: Option<Vec<PathTemplate>>
},
}