/* 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 */ pub mod accept; pub mod cache; pub mod cors; pub mod filter_sort; pub mod language; pub mod node_id; pub mod session; use accept::Accept; use jellylogic::session::Session; use jellyui::locale::Language; #[derive(Debug, Clone, Copy, Default)] pub struct A(pub T); pub struct RequestInfo { pub lang: Language, pub accept: Accept, pub session: Session, }