summaryrefslogtreecommitdiff
path: root/src/channel/routes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/channel/routes.rs')
-rw-r--r--src/channel/routes.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/channel/routes.rs b/src/channel/routes.rs
index 72d6195..5d8b61e 100644
--- a/src/channel/routes.rs
+++ b/src/channel/routes.rs
@@ -10,11 +10,11 @@ use axum_extra::extract::Query;
use super::app;
use crate::{
app::App,
- channel,
+ channel::{self, Channel},
clock::RequestedAt,
error::Internal,
- events::app::EventsError,
- repo::{channel::Channel, login::Login, sequence::Sequence},
+ event::{app::EventsError, Sequence},
+ login::Login,
};
#[cfg(test)]