aboutsummaryrefslogtreecommitdiff
path: root/server/src/helper/mod.rs
blob: f068cbcc8e790109aa80235decb50c3d8060cf72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
    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 filter_sort;
pub mod node_id;
pub mod session;

#[derive(Debug, Clone, Copy, Default)]
pub struct A<T>(pub T);