mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-09 05:06:43 +01:00
flatten modules somewhat
This commit is contained in:
parent
cb7ba855ab
commit
0779560502
29 changed files with 442 additions and 474 deletions
|
|
@ -7,15 +7,44 @@ pub mod time; pub(crate) use self::time::*;
|
|||
|
||||
pub mod space; pub(crate) use self::space::*;
|
||||
|
||||
pub mod tui; pub(crate) use self::tui::*; pub use tui::*;
|
||||
pub mod tui;
|
||||
pub(crate) use self::tui::*;
|
||||
pub use tui::*;
|
||||
|
||||
pub mod jack; pub(crate) use self::jack::*; pub use self::jack::*;
|
||||
pub mod jack;
|
||||
pub(crate) use self::jack::*;
|
||||
pub use self::jack::*;
|
||||
|
||||
pub mod midi; pub(crate) use self::midi::*;
|
||||
pub mod midi;
|
||||
pub(crate) use self::midi::*;
|
||||
|
||||
pub mod audio; pub(crate) use self::audio::*; pub use self::audio::*;
|
||||
pub mod transport;
|
||||
pub(crate) use self::transport::*;
|
||||
pub use self::transport::TransportTui;
|
||||
|
||||
pub mod plugin; pub(crate) use self::plugin::*; pub use self::plugin::*;
|
||||
pub mod sequencer;
|
||||
pub(crate) use self::sequencer::*;
|
||||
pub use self::sequencer::SequencerTui;
|
||||
|
||||
pub mod arranger;
|
||||
pub(crate) use self::arranger::*;
|
||||
pub use self::arranger::ArrangerTui;
|
||||
|
||||
mod sampler;
|
||||
pub(crate) use self::sampler::*;
|
||||
pub use self::sampler::{SamplerTui, Sampler, Sample, Voice};
|
||||
|
||||
mod mixer;
|
||||
pub(crate) use self::mixer::*;
|
||||
pub use self::mixer::{Mixer, MixerTrack, MixerTrackDevice};
|
||||
|
||||
pub mod plugin;
|
||||
pub(crate) use self::plugin::*;
|
||||
pub use self::plugin::*;
|
||||
|
||||
pub mod groovebox;
|
||||
pub(crate) use self::groovebox::*;
|
||||
pub use self::groovebox::GrooveboxTui;
|
||||
|
||||
pub use ::better_panic; pub(crate) use better_panic::{Settings, Verbosity};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue