10 lines
180 B
Rust
10 lines
180 B
Rust
|
mod crypto;
|
||
|
use crypto::decrypt_directory;
|
||
|
|
||
|
fn main() {
|
||
|
println!("Hello, world!");
|
||
|
println!("Encrypting test directory");
|
||
|
decrypt_directory("testdir").unwrap();
|
||
|
|
||
|
}
|