mod state; mod endpoint; //mod handler; mod msg; mod event; mod TelegramEndpoint; use eyre::Result; use state::RircdState; #[tokio::main] async fn main() -> Result<()> { let mut s = RircdState::new()?; s.run().await?; Ok(()) }