summaryrefslogtreecommitdiff
path: root/src/index
diff options
context:
space:
mode:
Diffstat (limited to 'src/index')
-rw-r--r--src/index/app.rs2
-rw-r--r--src/index/templates.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/index/app.rs b/src/index/app.rs
index 79f5a9a..d6eef18 100644
--- a/src/index/app.rs
+++ b/src/index/app.rs
@@ -1,7 +1,7 @@
use sqlx::sqlite::SqlitePool;
use crate::{
- channel::repo::{Channel, Provider as _},
+ channel::repo::channels::{Channel, Provider as _},
error::BoxedError,
};
diff --git a/src/index/templates.rs b/src/index/templates.rs
index fdb750b..38cd93f 100644
--- a/src/index/templates.rs
+++ b/src/index/templates.rs
@@ -1,6 +1,6 @@
use maud::{html, Markup, DOCTYPE};
-use crate::{channel::repo::Channel, login::repo::logins::Login};
+use crate::{channel::repo::channels::Channel, login::repo::logins::Login};
pub fn authenticated<'c>(login: Login, channels: impl IntoIterator<Item = &'c Channel>) -> Markup {
html! {