Far-Beyond-Pulsar/Pulsar-Native
View on GitHubConsider adding nested templates for subfolders
Open
#49 opened on Jan 3, 2026
enhancementgood first issue
Repository metrics
- Stars
- (348 stars)
- PR merge metrics
- (PR metrics pending)
Description
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>>
},
}