mas_handlers/admin/v1/user_emails/
mod.rs

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