mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-23 15:01:45 +01:00
Fix the CI
This commit is contained in:
parent
e431689ee9
commit
95a540aa19
2 changed files with 5 additions and 1 deletions
|
@ -206,7 +206,10 @@ impl<'a, HandlerE> FilterDispatcher<'a, HandlerE> {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn dispatch<U>(&mut self, update: Update) -> Result<(), HandlerE> {
|
pub async fn dispatch<U>(
|
||||||
|
&mut self,
|
||||||
|
update: Update,
|
||||||
|
) -> Result<(), HandlerE> {
|
||||||
let Update { kind, id } = update;
|
let Update { kind, id } = update;
|
||||||
|
|
||||||
let res = match kind.clone() {
|
let res = match kind.clone() {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
use derive_more::From;
|
use derive_more::From;
|
||||||
use reqwest::StatusCode;
|
use reqwest::StatusCode;
|
||||||
|
use serde::Deserialize;
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
||||||
//<editor-fold desc="download">
|
//<editor-fold desc="download">
|
||||||
|
|
Loading…
Reference in a new issue