organize-rs 0.4.1

organize - a file management automation tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! 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::aliases::Reference;
use organize_rs_core::rules::Rule;
use serde::{Deserialize, Serialize};

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