pageinfo-rs 0.1.2

CLI tool that analyzes web pages and produces structured LLM-friendly output
Documentation
1
2
3
4
5
6
7
8
9
10
mod error;
mod key;
mod store;
mod types;

pub use error::CacheError;
pub use store::{Cache, FileCache};
#[cfg(test)]
pub use types::CachedFetch;
pub use types::{CacheConfig, CachedPage};