2023-07-25 14:47:33 +01:00
|
|
|
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
|
|
|
|
2023-07-25 14:47:33 +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>;
|