teremock 0.5.5

Fast integration testing library for teloxide Telegram bots
Documentation
1
2
3
4
5
6
7
8
use actix_web::Responder;
use serde_json::json;

use super::make_telegram_result;

pub async fn get_updates() -> impl Responder {
    make_telegram_result(json!([]))
}