mas_handlers/admin/v1/user_emails/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2025 New Vector Ltd.
//
// SPDX-License-Identifier: AGPL-3.0-only
// Please see LICENSE in the repository root for full details.

mod add;
mod delete;
mod get;
mod list;

pub use self::{
    add::{doc as add_doc, handler as add},
    delete::{doc as delete_doc, handler as delete},
    get::{doc as get_doc, handler as get},
    list::{doc as list_doc, handler as list},
};