mas_handlers/admin/v1/user_registration_tokens/mod.rs
1// Copyright 2025 New Vector Ltd.
2// Copyright 2025 The Matrix.org Foundation C.I.C.
3//
4// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
5// Please see LICENSE files in the repository root for full details.
6
7mod add;
8mod get;
9mod list;
10mod revoke;
11mod unrevoke;
12mod update;
13
14pub use self::{
15 add::{doc as add_doc, handler as add},
16 get::{doc as get_doc, handler as get},
17 list::{doc as list_doc, handler as list},
18 revoke::{doc as revoke_doc, handler as revoke},
19 unrevoke::{doc as unrevoke_doc, handler as unrevoke},
20 update::{doc as update_doc, handler as update},
21};