mas_handlers/admin/v1/policy_data/
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 get;
7mod get_latest;
8mod set;
9
10pub use self::{
11    get::{doc as get_doc, handler as get},
12    get_latest::{doc as get_latest_doc, handler as get_latest},
13    set::{doc as set_doc, handler as set},
14};