diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-09-20 23:01:18 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-09-20 23:05:44 -0400 |
| commit | 0a05491930fb34ce7c93c33ea0b7599360483fc7 (patch) | |
| tree | 552906477fd81c6687c0ca9c6bdc25e22461b52a /src/app.rs | |
| parent | 22348bfa35f009e62abe2f30863e0434079a1fe2 (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.rs | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -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 { |
