mas_axum_utils/
lib.rs

1// Copyright 2024 New Vector Ltd.
2// Copyright 2022-2024 The Matrix.org Foundation C.I.C.
3//
4// SPDX-License-Identifier: AGPL-3.0-only
5// Please see LICENSE in the repository root for full details.
6
7#![deny(clippy::future_not_send)]
8#![allow(clippy::module_name_repetitions)]
9
10pub mod client_authorization;
11pub mod cookies;
12pub mod csrf;
13pub mod error_wrapper;
14pub mod fancy_error;
15pub mod jwt;
16pub mod language_detection;
17pub mod sentry;
18pub mod session;
19pub mod user_authorization;
20
21pub use axum;
22
23pub use self::{
24    error_wrapper::ErrorWrapper,
25    fancy_error::FancyError,
26    session::{SessionInfo, SessionInfoExt},
27};