summaryrefslogtreecommitdiff
path: root/src/app.rs
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-09-20 23:01:18 -0400
committerOwen Jacobson <owen@grimoire.ca>2024-09-20 23:05:44 -0400
commit0a05491930fb34ce7c93c33ea0b7599360483fc7 (patch)
tree552906477fd81c6687c0ca9c6bdc25e22461b52a /src/app.rs
parent22348bfa35f009e62abe2f30863e0434079a1fe2 (diff)
Push events into a module structure consistent with the rest of the project.
Diffstat (limited to 'src/app.rs')
-rw-r--r--src/app.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/app.rs b/src/app.rs
index 0823a0c..e448436 100644
--- a/src/app.rs
+++ b/src/app.rs
@@ -1,9 +1,6 @@
use sqlx::sqlite::SqlitePool;
-use crate::{
- channel::app::{Broadcaster, Channels},
- login::app::Logins,
-};
+use crate::{channel::app::Channels, events::app::Broadcaster, login::app::Logins};
#[derive(Clone)]
pub struct App {