aboutsummaryrefslogtreecommitdiffstats
path: root/zoned/src/config.rs
blob: aa163606486c0e91bd9e04d3c1eae831abcb589a (plain)
1
2
3
4
5
6
7
8
use serde::{Deserialize, Serialize};

#[derive(Default, Serialize, Deserialize)]
pub struct Config {
    pub(crate) rocket_config: rocket::Config,

    pub(crate) zfs_config: zone_zfs::Config,
}