tgbot-mastodon-sync 0.2.2

A Telegram bot synchronizes Telegram messages to Mastodon
Documentation
1
2
3
4
5
use crate::handler::{Request, Response};

pub async fn handle<'a>(_req: &Request, arg: &'a str) -> Result<Response<'a>, Response<'a>> {
    Err(Response::reply_to(arg))
}