mas_handlers/admin/v1/oauth2_sessions/
mod.rs

1// Copyright 2024 New Vector Ltd.
2// Copyright 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
7mod get;
8mod list;
9
10pub use self::{
11    get::{doc as get_doc, handler as get},
12    list::{doc as list_doc, handler as list},
13};