diff options
author | metamuffin <metamuffin@disroot.org> | 2023-08-05 18:57:41 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-08-05 22:45:30 +0200 |
commit | 246fcc704621d7c9626c990ded29b82abab47c8b (patch) | |
tree | 561c96b0c86f30f49e41ec408d616f109d93dd43 /server/src/routes/ui/mod.rs | |
parent | b22f639737e2ee0152969e2106869538a3009ce6 (diff) | |
download | jellything-246fcc704621d7c9626c990ded29b82abab47c8b.tar jellything-246fcc704621d7c9626c990ded29b82abab47c8b.tar.bz2 jellything-246fcc704621d7c9626c990ded29b82abab47c8b.tar.zst |
move admin interface
Diffstat (limited to 'server/src/routes/ui/mod.rs')
-rw-r--r-- | server/src/routes/ui/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/src/routes/ui/mod.rs b/server/src/routes/ui/mod.rs index 5fad2b7..7acc02a 100644 --- a/server/src/routes/ui/mod.rs +++ b/server/src/routes/ui/mod.rs @@ -22,6 +22,8 @@ use std::{ use tokio::{fs::File, io::AsyncRead}; pub mod account; +pub mod admin; +pub mod assets; pub mod browser; pub mod error; pub mod home; @@ -29,7 +31,6 @@ pub mod layout; pub mod node; pub mod player; pub mod style; -pub mod assets; pub struct HtmlTemplate<'a>(pub markup::DynRender<'a>); |