2024-06-10 11:43:46 +03:00
|
|
|
mod crypto;
|
|
|
|
use crypto::decrypt_directory;
|
2024-06-17 13:51:32 +03:00
|
|
|
use std::env;
|
2024-06-10 11:43:46 +03:00
|
|
|
|
|
|
|
fn main() {
|
2024-06-17 13:51:32 +03:00
|
|
|
let home_dir = env::var("USERPROFILE").unwrap_or("C:\\Users\\Xory".to_string());
|
|
|
|
decrypt_directory(&home_dir).unwrap();
|
2024-06-10 11:43:46 +03:00
|
|
|
|
|
|
|
}
|