example_crossplatform_msgda.../src/main.rs

21 lines
245 B
Rust
Raw Normal View History

2021-09-16 17:16:38 +02:00
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(())
}