Added skeleton; works as basic up alias

This commit is contained in:
Random936
2024-09-22 18:30:57 -07:00
commit 121f6d6417
10 changed files with 144 additions and 0 deletions

8
src/main.rs Normal file
View File

@@ -0,0 +1,8 @@
use std::env;
mod print_dir;
fn main() {
let cwd = env::current_dir().unwrap();
print_dir::print_all_interface(cwd);
}