organize-rs 0.2.4

organize - a file management automation tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Organize Config
//!
//! See instructions in `commands.rs` to specify the path to your
//! application's configuration file and/or command-line options
//! for specifying it.

use organize_rs_core::rules::{aliases::Reference, OrganizeRule};
use serde::{Deserialize, Serialize};

/// Organize Configuration
#[derive(Clone, Debug, Deserialize, Serialize, Default)]
#[serde(deny_unknown_fields)]
pub struct OrganizeConfig {
    aliases: Vec<Reference>,
    rules: Vec<OrganizeRule>,
}