aboutsummaryrefslogtreecommitdiff
path: root/server/src/helper/mod.rs
blob: 125b159b4f95718c161fc080e05197002369a81a (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
    This file is part of jellything (https://codeberg.org/metamuffin/jellything)
    which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
    Copyright (C) 2025 metamuffin <metamuffin.org>
*/
pub mod cache;
pub mod cors;
pub mod session;
pub mod node_id;

pub struct A<T>(pub T);