wrote some more stuff

This commit is contained in:
pyro57000
2025-12-31 10:23:37 -06:00
parent 921a2f5923
commit 5a84102138
5 changed files with 76 additions and 8 deletions

View File

@@ -2,9 +2,13 @@ use colored::Colorize;
use std::{
fs::{File, OpenOptions, copy, create_dir_all, remove_dir_all, remove_file},
io::Write,
ops::Index,
path::PathBuf,
process::Command,
slice::Windows,
};
use term_size::dimensions_stdout;
use tokio::sync::OwnedMappedMutexGuard;
use walkdir::WalkDir;
#[derive(Default, Clone)]
@@ -158,6 +162,8 @@ impl Project {
notes_template.push("phishing");
} else if self.name.contains("webapp") {
notes_template.push("webapp");
} else {
notes_template.push("external");
}
let walkdir = WalkDir::new(&notes_template);
for res in walkdir {