From 805b2ee1390427764994de4c0ad6c8f00ca0231a Mon Sep 17 00:00:00 2001 From: unspeaker Date: Mon, 14 Apr 2025 00:03:06 +0300 Subject: [PATCH] chore: format imports --- app/src/lib.rs | 28 ++++++++++------------------ 1 file changed, 10 insertions(+), 18 deletions(-) diff --git a/app/src/lib.rs b/app/src/lib.rs index 84166cc8..09dea93b 100644 --- a/app/src/lib.rs +++ b/app/src/lib.rs @@ -28,22 +28,14 @@ pub use ::tek_jack::{self, *, jack::*}; pub use ::tek_midi::{self, *, midly::{MidiMessage, num::*, live::*}}; pub use ::tek_sampler::{self, *}; pub use ::tek_plugin::{self, *}; -pub use ::tengri::{ - dsl::*, - input::*, - output::*, - tui::{ - *, - ratatui::{ - self, - prelude::{Color::{self, *}, Style, Stylize, Buffer, Modifier}, buffer::Cell - }, - crossterm::{ - self, - event::{ - Event, KeyEvent, KeyEventKind, KeyEventState, KeyModifiers, KeyCode::{self, *}, - }, - }, - }, -}; +pub use ::tengri::dsl::*; +pub use ::tengri::input::*; +pub use ::tengri::output::*; +pub use ::tengri::tui::*; +pub use ::tengri::tui::ratatui; +pub use ::tengri::tui::ratatui::prelude::buffer::Cell; +pub use ::tengri::tui::ratatui::prelude::Color::{self, *}; +pub use ::tengri::tui::ratatui::prelude::{Style, Stylize, Buffer, Modifier}; +pub use ::tengri::tui::crossterm; +pub use ::tengri::tui::crossterm::event::{Event, KeyCode::{self, *}}; pub(crate) use std::sync::{Arc, RwLock, atomic::{AtomicBool, Ordering::Relaxed}};