rsbackup 0.1.1

rsbackup is a cross-platform file backup tool written in Rust, designed to simplify the backup process. It supports Windows, Linux, and macOS, and is open source under the GPL license.
1
2
3
4
5
6
7
pub mod local;

// mod cloud;
pub trait Storage {
    fn store_file(&self, source_path: &str, destination_path: &str, exclude: &[String]) -> Result<(), String>;
    fn backup_destination(&self) -> &str;
}