mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-08 04:36:45 +01:00
refactor core::time
This commit is contained in:
parent
1261b07aa2
commit
61ab472e32
13 changed files with 38 additions and 48 deletions
|
|
@ -1,3 +1,13 @@
|
|||
pub mod core; pub(crate) use self::core::*;
|
||||
pub mod layout; pub(crate) use self::layout::*;
|
||||
pub mod api; pub(crate) use self::api::*;
|
||||
pub mod tui; pub(crate) use self::tui::*;
|
||||
pub mod edn; pub(crate) use self::edn::*;
|
||||
pub mod jack; pub(crate) use self::jack::*;
|
||||
pub mod midi; pub(crate) use self::midi::*;
|
||||
pub mod time; pub(crate) use self::time::*;
|
||||
pub mod space; pub(crate) use self::space::*;
|
||||
|
||||
/// Standard result type.
|
||||
pub type Usually<T> = Result<T, Box<dyn Error>>;
|
||||
|
||||
|
|
@ -19,27 +29,6 @@ pub type Perhaps<T> = Result<Option<T>, Box<dyn Error>>;
|
|||
($($name:ident)*) => { $(#[cfg(test)] mod $name;)* };
|
||||
}
|
||||
|
||||
pub mod core;
|
||||
pub(crate) use core::*;
|
||||
|
||||
pub mod layout; pub(crate)
|
||||
use layout::*;
|
||||
|
||||
pub mod api;
|
||||
pub(crate) use api::*;
|
||||
|
||||
pub mod tui;
|
||||
pub(crate) use tui::*;
|
||||
|
||||
pub mod edn;
|
||||
pub(crate) use edn::*;
|
||||
|
||||
pub mod jack;
|
||||
pub(crate) use jack::*;
|
||||
|
||||
pub mod midi;
|
||||
pub(crate) use midi::*;
|
||||
|
||||
testmod! { test }
|
||||
|
||||
pub(crate) use clap::{self, Parser};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue