1// SPDX-FileCopyrightText: 2026 Slatian <baschdel@disroot.org> 2// 3// SPDX-License-Identifier: AGPL-3.0-or-later 4 5use std::collections::HashMap; 6 7use serde_json::Value; 8 9/// Datatype that stores arbitrary custom template configuration. 10pub type ExtraConfig = HashMap<String, Value>;