mas_handlers/admin/v1/user_registration_tokens/
mod.rs

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