use crate::prelude::*; mod add; mod find; pub use add::add; pub use find::find; type Link = atom_syndication::Link; pub type HistoryFind = fn(&Link, &str) -> Result; pub type HistoryAdd = fn(&Link, &str) -> Result<()>;