Skip to main content

Mountain/Binary/Build/DnsCommands/
DnsServerInfo.rs

1
2//! Basic DNS server information returned to the webview by
3//! `dns_get_server_info`.
4
5use serde::{Deserialize, Serialize};
6
7#[derive(Debug, Clone, Serialize, Deserialize)]
8pub struct DnsServerInfo {
9	pub port:u16,
10
11	pub is_running:bool,
12
13	pub startup_time:String,
14}