mas_handlers/admin/v1/compat_sessions/
mod.rs

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