diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-01-24 04:31:48 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-01-24 04:31:48 +0100 |
| commit | b2e88a8beabf04adc28947cf82996e8692a68b71 (patch) | |
| tree | 23d66c8672b69cce7835ffabae4092669062ada8 /server/src/request_info/session.rs | |
| parent | 774f64c0789529884dd7a5232f190e347ad29532 (diff) | |
| download | jellything-b2e88a8beabf04adc28947cf82996e8692a68b71.tar jellything-b2e88a8beabf04adc28947cf82996e8692a68b71.tar.bz2 jellything-b2e88a8beabf04adc28947cf82996e8692a68b71.tar.zst | |
move things around; kv crate
Diffstat (limited to 'server/src/request_info/session.rs')
| -rw-r--r-- | server/src/request_info/session.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/server/src/request_info/session.rs b/server/src/request_info/session.rs new file mode 100644 index 0000000..d032659 --- /dev/null +++ b/server/src/request_info/session.rs @@ -0,0 +1,15 @@ +/* + 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) 2026 metamuffin <metamuffin.org> +*/ +use super::A; +use crate::ui::error::MyError; +use anyhow::anyhow; +use log::warn; +use rocket::{ + Request, async_trait, + http::Status, + outcome::Outcome, + request::{self, FromRequest}, +}; |