klone 1.0.2

A backup application based in the same FS that will only back the file that you changed
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod app;

/// Error struct and enum for the different error messages the app shows
pub mod error;

mod sys;

/// Establishes different functions that tell if a file should be excluded from the backup
/// or the defaults in case no path was specified
pub mod config;

mod output;

/// The function that starts the backup of the code
pub use app::backup;

/// The function that states if an element shall be copied
pub use sys::should_be_backed;