podal/src/feed/mod.rs

13 lines
219 B
Rust
Raw Normal View History

use crate::prelude::*;
2023-07-25 10:46:47 +01:00
mod find;
2023-07-25 10:50:00 +01:00
mod get;
2023-07-25 10:46:47 +01:00
pub use find::find;
pub use get::get;
type Feed = atom_syndication::Feed;
pub type FeedFind = fn(&str, &str) -> Result<String>;
pub type FeedGet = fn(&str) -> Result<Feed>;