forgejo-todo-checker/src/main.rs

12 lines
297 B
Rust
Raw Normal View History

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(())
}