use crate::prelude::*; use crate::fetch::FetchGet; mod find; mod get; use atom_syndication::Feed; pub use find::find; pub use get::reqwest_blocking_get; pub struct FeedEnv { pub find: FeedFind, pub get: FeedGet, } pub type FeedFind = fn(&str, &str, &FetchGet) -> Result; pub type FeedGet = fn(&str) -> Result;