podal/src/history/mod.rs

13 lines
229 B
Rust
Raw Normal View History

use crate::prelude::*;
2023-07-25 10:55:02 +01:00
mod add;
2023-07-25 10:53:26 +01:00
mod find;
pub use add::add;
pub use find::find;
type Link = atom_syndication::Link;
pub type HistoryFind = fn(&Link, &str) -> Result<bool>;
pub type HistoryAdd = fn(&Link, &str) -> Result<()>;