a4adb124d0
I'm not sure if this is the best syntax...
8 lines
153 B
Rust
8 lines
153 B
Rust
#[derive(Debug, Default, Deserialize)]
|
|
pub struct FileConfig {
|
|
pub path: String,
|
|
pub data: String,
|
|
#[serde(default)]
|
|
pub symlink: bool
|
|
}
|