Skip to main content

Mountain/Binary/Build/DnsCommands/
ForwardAllowList.rs

1//! Allowed external domains the DNS server may forward queries
2//! to. Returned by `dns_get_forward_allowlist`.
3
4use serde::{Deserialize, Serialize};
5
6#[derive(Debug, Clone, Serialize, Deserialize)]
7pub struct ForwardAllowList {
8	pub domains:Vec<String>,
9}