mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
chore: format imports
This commit is contained in:
parent
9c1a43ec2d
commit
805b2ee139
1 changed files with 10 additions and 18 deletions
|
|
@ -28,22 +28,14 @@ pub use ::tek_jack::{self, *, jack::*};
|
||||||
pub use ::tek_midi::{self, *, midly::{MidiMessage, num::*, live::*}};
|
pub use ::tek_midi::{self, *, midly::{MidiMessage, num::*, live::*}};
|
||||||
pub use ::tek_sampler::{self, *};
|
pub use ::tek_sampler::{self, *};
|
||||||
pub use ::tek_plugin::{self, *};
|
pub use ::tek_plugin::{self, *};
|
||||||
pub use ::tengri::{
|
pub use ::tengri::dsl::*;
|
||||||
dsl::*,
|
pub use ::tengri::input::*;
|
||||||
input::*,
|
pub use ::tengri::output::*;
|
||||||
output::*,
|
pub use ::tengri::tui::*;
|
||||||
tui::{
|
pub use ::tengri::tui::ratatui;
|
||||||
*,
|
pub use ::tengri::tui::ratatui::prelude::buffer::Cell;
|
||||||
ratatui::{
|
pub use ::tengri::tui::ratatui::prelude::Color::{self, *};
|
||||||
self,
|
pub use ::tengri::tui::ratatui::prelude::{Style, Stylize, Buffer, Modifier};
|
||||||
prelude::{Color::{self, *}, Style, Stylize, Buffer, Modifier}, buffer::Cell
|
pub use ::tengri::tui::crossterm;
|
||||||
},
|
pub use ::tengri::tui::crossterm::event::{Event, KeyCode::{self, *}};
|
||||||
crossterm::{
|
|
||||||
self,
|
|
||||||
event::{
|
|
||||||
Event, KeyEvent, KeyEventKind, KeyEventState, KeyModifiers, KeyCode::{self, *},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
pub(crate) use std::sync::{Arc, RwLock, atomic::{AtomicBool, Ordering::Relaxed}};
|
pub(crate) use std::sync::{Arc, RwLock, atomic::{AtomicBool, Ordering::Relaxed}};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue