Skip to main content

Mountain/Binary/Build/DnsCommands/
ForwardAllowList.rs

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