sequencer: merge Sequencer and SequencerTrack

This commit is contained in:
🪞👃🪞 2024-08-10 20:20:20 +03:00
parent 1d3d3875fe
commit 6206a43b4a
8 changed files with 171 additions and 190 deletions

View file

@ -18,7 +18,7 @@ pub struct SequencerCli {
impl Sequencer {
pub fn from_args () -> Self {
let args = SequencerCli::parse();
let mut seq = Self::new();
let mut seq = Self::new("");
if let Some(name) = args.name {
seq.name = name.clone();
}