use crate::prelude::*; use crate::network::NetworkEnv; use atom_syndication::Feed; mod find; pub use find::find; pub fn get(url: &str, e: &NetworkEnv) -> Result { let content = (e.fetch_as_bytes)(url)?; let channel = Feed::read_from(&content[..])?; Ok(channel) }