fn main() -> anyhow::Result<()> { println!("Forgejo TODO Checker!"); // list files in current directory to get a feel for what we have access to std::fs::read_dir(".")? .filter_map(Result::ok) .map(|e| e.path()) .for_each(|e| println!("{e:?}")); Ok(()) }