enhancementgood first issue
仓库指标
- 星标
- (348 个星标)
- PR 合并指标
- (平均合并 11小时 37分钟) (30 天内合并 69 个 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>>
},
}