From 0a05491930fb34ce7c93c33ea0b7599360483fc7 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Fri, 20 Sep 2024 23:01:18 -0400 Subject: Push events into a module structure consistent with the rest of the project. --- src/app.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/app.rs') 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 { -- cgit v1.2.3