src/backup/backup_info.rs: move code into separate file

Also changed create_backup_dir() parameters - uses &BackupDir now.
This commit is contained in:
Dietmar Maurer
2019-03-05 07:18:12 +01:00
parent 2b01a22507
commit b3483782d1
4 changed files with 191 additions and 199 deletions

View File

@ -29,5 +29,8 @@ pub use fixed_index::*;
mod dynamic_index;
pub use dynamic_index::*;
mod backup_info;
pub use backup_info::*;
mod datastore;
pub use datastore::*;