mobot 0.3.10

A Telegram framework for Rust
Documentation
1
2
3
4
5
use crate::{Action, Event};

pub async fn done_handler<S>(_: Event, _: S) -> Result<Action, anyhow::Error> {
    Ok(Action::Done)
}