forgejo-todo-checker/src/main.rs

31 lines
759 B
Rust
Raw Normal View History

2024-09-18 11:55:33 +01:00
//
2024-09-19 19:12:41 +01:00
use anyhow::Result;
use init::init_config;
use scanner::find_markers;
2024-09-18 11:55:33 +01:00
2024-09-19 19:12:41 +01:00
mod init;
2024-09-18 11:55:33 +01:00
mod model;
mod patterns;
2024-09-19 19:12:41 +01:00
mod scanner;
2024-09-18 07:44:34 +01:00
fn main() -> Result<()> {
println!("Forgejo TODO Checker!");
2024-09-19 19:12:41 +01:00
let config = init_config()?;
2024-09-18 07:44:34 +01:00
2024-09-19 19:12:41 +01:00
let markers = find_markers(config)?;
println!("{markers}");
2024-09-17 18:03:50 +01:00
// TODO: add authentication when provided
// let issues = ureq::get(&api).call()?.into_string()?;
// TODO: parse issues to get list of open issue numbers
// TODO: loop over list of expected issues and drop any where they do exist and are open
// TODO: if remaining list is not empty - add all to error list
//
// TODO: if error list is empty - exit okay
// TODO: if error list is not empty - log erros and exit not okay
Ok(())
}