2024-09-17 16:48:09 +01:00
|
|
|
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(())
|
2024-09-17 16:26:32 +01:00
|
|
|
}
|