trust_dns_server/store/file/config.rs
1// Copyright 2015-2019 Benjamin Fry <benjaminfry@me.com>
2//
3// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
4// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
5// http://opensource.org/licenses/MIT>, at your option. This file may not be
6// copied, modified, or distributed except according to those terms.
7
8use serde::Deserialize;
9
10/// Configuration for file based zones
11#[derive(Deserialize, PartialEq, Eq, Debug)]
12pub struct FileConfig {
13 /// path to the zone file
14 pub zone_file_path: String,
15}