diff options
author | curly <curlybryce@protonmail.com> | 2023-01-04 12:23:27 -0700 |
---|---|---|
committer | curly <curlybryce@protonmail.com> | 2023-01-04 12:23:27 -0700 |
commit | f7b43b2ee392d28f69964b00c7db98b4c87e3afe (patch) | |
tree | af836c2d32d270bd4c777ad0e974ec1ee9fa1c7a /src/main.rs | |
parent | b8fc13fdfd6793752980f915fa8ef26d9cb1cf63 (diff) | |
download | s3g-f7b43b2ee392d28f69964b00c7db98b4c87e3afe.tar.gz s3g-f7b43b2ee392d28f69964b00c7db98b4c87e3afe.tar.bz2 s3g-f7b43b2ee392d28f69964b00c7db98b4c87e3afe.zip |
recurssively check files +working
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 3b75b65..8e2a6ae 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,5 +8,6 @@ fn main() { }; // Run - s3g::run(config); + let s3g = s3g::S3G::new(config); + s3g.run(); }
\ No newline at end of file |