diff options
author | metamuffin <metamuffin@disroot.org> | 2025-04-29 17:06:23 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-04-29 17:06:23 +0200 |
commit | 212a0f23bc894faf88e159560c113f504349cc05 (patch) | |
tree | ee2ff0ff3b185d1874eb0e8fc4b75f1badf659b8 /server/src/helper/mod.rs | |
parent | f73aa32549743b2967160d38c1622199c41524a4 (diff) | |
download | jellything-212a0f23bc894faf88e159560c113f504349cc05.tar jellything-212a0f23bc894faf88e159560c113f504349cc05.tar.bz2 jellything-212a0f23bc894faf88e159560c113f504349cc05.tar.zst |
comiles again but still many logic holes
Diffstat (limited to 'server/src/helper/mod.rs')
-rw-r--r-- | server/src/helper/mod.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/src/helper/mod.rs b/server/src/helper/mod.rs index 125b159..7164175 100644 --- a/server/src/helper/mod.rs +++ b/server/src/helper/mod.rs @@ -5,7 +5,9 @@ */ pub mod cache; pub mod cors; -pub mod session; +pub mod filter_sort; pub mod node_id; +pub mod session; +#[derive(Debug, Clone, Copy)] pub struct A<T>(pub T); |