podfeed/
lib.rs

1#![warn(missing_docs)]
2
3//! Convert `*.info.json` files into a single RSS feed.
4
5pub mod config;
6pub mod convert;
7pub mod error;
8pub mod info;
9pub mod rss;
10
11/// Result type for this crate.
12pub type Result<T> = std::result::Result<T, error::Error>;