diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2022-11-09 16:48:36 -0500 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2022-11-09 16:48:36 -0500 |
commit | 5ea42e3463271f0cee2968557e8220a0b39a0bc2 (patch) | |
tree | 3ff0b009a0d81564f8017ed2e06c2757595696f9 /src/main.rs | |
parent | move persist data to /var/run/crab (diff) | |
download | crab-5ea42e3463271f0cee2968557e8220a0b39a0bc2.tar.gz crab-5ea42e3463271f0cee2968557e8220a0b39a0bc2.tar.bz2 crab-5ea42e3463271f0cee2968557e8220a0b39a0bc2.zip |
move secure files to secure handler
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index ede8751..28f08cd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -15,6 +15,7 @@ const ERROR_RUN_ROOT: u8 = 6; mod persist; mod flags; mod help; +mod secure; fn main() -> ExitCode { let args: Vec<String> = env::args().collect(); @@ -26,7 +27,7 @@ fn main() -> ExitCode { } }; if flags.version { - println!("crab version 0.0.4"); + println!("crab version 0.0.5"); return ExitCode::SUCCESS; } if flags.help { |