use crate::prelude::*; mod find; mod get; pub use find::find; pub use get::get; type Feed = atom_syndication::Feed; pub type FeedFind = fn(&str, &str) -> Result; pub type FeedGet = fn(&str) -> Result;