Files
RedBear-OS/src/config/file.rs
T
Ian Douglas Scott a4adb124d0 Support adding symlinks in configuration
I'm not sure if this is the best syntax...
2017-08-21 13:24:36 -07:00

8 lines
153 B
Rust

#[derive(Debug, Default, Deserialize)]
pub struct FileConfig {
pub path: String,
pub data: String,
#[serde(default)]
pub symlink: bool
}