stat page and cache working

This commit is contained in:
2025-06-25 18:03:44 +02:00
parent 0878b7dcec
commit 2d373da4c5
6 changed files with 248 additions and 5 deletions

View File

@@ -25,6 +25,8 @@ enum Commands {
},
/// Watch for changes in the posts directory
Watch,
/// Show Rust parser statistics
Rsparseinfo,
}
fn main() {
@@ -65,5 +67,8 @@ fn main() {
std::thread::sleep(std::time::Duration::from_secs(60));
}
}
Commands::Rsparseinfo => {
println!("{}", markdown::rsparseinfo());
}
}
}