mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
i dont know why that worked
This commit is contained in:
parent
4ae62c5bc2
commit
b73aa8a0dc
17 changed files with 552 additions and 481 deletions
|
|
@ -8,12 +8,13 @@ use std::error::Error;
|
|||
pub mod cli;
|
||||
pub mod device;
|
||||
pub mod prelude;
|
||||
pub mod render;
|
||||
pub mod draw;
|
||||
pub mod config;
|
||||
pub mod layout;
|
||||
pub mod time;
|
||||
|
||||
use crate::device::{Chain, Sequencer, Sampler, Plugin, Mixer, Transport};
|
||||
use crate::layout::{Rows, Columns};
|
||||
use crate::device::{Sequencer, Transport};
|
||||
use crate::layout::Rows;
|
||||
|
||||
fn main () -> Result<(), Box<dyn Error>> {
|
||||
let cli = cli::Cli::parse();
|
||||
|
|
@ -21,7 +22,7 @@ fn main () -> Result<(), Box<dyn Error>> {
|
|||
crate::config::create_dirs(&xdg)?;
|
||||
crate::device::run(Rows::new(true, vec![
|
||||
Box::new(Sequencer::new("Rhythm#000")?),
|
||||
Box::new(Transport::new()?),
|
||||
Box::new(Transport::new("Transport0")?),
|
||||
]))
|
||||
//crate::device::run(Rows::new(true, vec![
|
||||
//Box::new(Columns::new(false, vec![
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue