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