Artifact 086f4498d900a2c4ec45a7f6000ae4fff5ca322087943d5e6cfe43d52d55600d:
- File src/main.rs — part of check-in [e624ef9d66] at 2025-04-20 09:51:00 on branch trunk — drop old telegram_bot library, switch to frankenstein (user: arcade, size: 395) [annotate] [blame] [check-ins using]
//! This is telegram bot to fetch RSS/ATOM feeds and post results on public //! channels #![warn(missing_docs)] mod command; mod core; use anyhow::Result; #[async_std::main] async fn main() -> Result<()> { let settings = config::Config::builder() .add_source(config::File::with_name("rsstg")) .build()?; let core = core::Core::new(settings).await?; core.stream().await?; Ok(()) }