organize-rs 0.2.4

organize - a file management automation tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Main entry point for Organize

#![deny(warnings, missing_docs, trivial_casts, unused_qualifications)]
#![forbid(unsafe_code)]

use organize_rs::application::ORGANIZE_APP;

/// Boot Organize
fn main() {
    abscissa_core::boot(&ORGANIZE_APP);
}