mas_handlers/admin/v1/compat_sessions/
mod.rs

1// Copyright 2025 New Vector Ltd.
2//
3// SPDX-License-Identifier: AGPL-3.0-only
4// Please see LICENSE in the repository root for full details.
5
6mod get;
7mod list;
8
9pub use self::{
10    get::{doc as get_doc, handler as get},
11    list::{doc as list_doc, handler as list},
12};