Skip to main content

chord_progression_parser/model/
ast.rs

1use super::section::Section;
2use typeshare::typeshare;
3
4#[typeshare]
5pub type Ast = Vec<Section>;