summaryrefslogtreecommitdiff
path: root/src/channel/routes.rs
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-10-02 00:41:25 -0400
committerOwen Jacobson <owen@grimoire.ca>2024-10-02 00:41:38 -0400
commit357116366c1307bedaac6a3dfe9c5ed8e0e0c210 (patch)
treed701378187d8b0f99d524991925e8348c6cab0d6 /src/channel/routes.rs
parentf878f0b5eaa44e8ee8d67cbfd706926ff2119113 (diff)
First pass on reorganizing the backend.
This is primarily renames and repackagings.
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)]