mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-11 04:21:12 +01:00
Fix a typo
This commit is contained in:
parent
07ad965562
commit
2b679fed43
4 changed files with 4 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
use super::passport_file::PassportFile;
|
||||
use super::PassportFile;
|
||||
|
||||
#[derive(Clone, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)]
|
||||
pub struct EncryptedPassportElement {
|
||||
|
|
|
@ -79,7 +79,7 @@ pub use inline_query_result_venue::*;
|
|||
pub use inline_query_result_video::*;
|
||||
pub use inline_query_result_voice::*;
|
||||
|
||||
pub use encrypted_credintials::*;
|
||||
pub use encrypted_credentials::*;
|
||||
pub use encrypted_passport_element::*;
|
||||
pub use passport_data::*;
|
||||
pub use passport_file::*;
|
||||
|
@ -163,7 +163,7 @@ mod inline_query_result_venue;
|
|||
mod inline_query_result_video;
|
||||
mod inline_query_result_voice;
|
||||
|
||||
mod encrypted_credintials;
|
||||
mod encrypted_credentials;
|
||||
mod encrypted_passport_element;
|
||||
mod passport_data;
|
||||
mod passport_file;
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
use super::encrypted_credintials::EncryptedCredentials;
|
||||
use super::encrypted_passport_element::EncryptedPassportElement;
|
||||
use super::{EncryptedCredentials, EncryptedPassportElement};
|
||||
|
||||
#[derive(Debug, Deserialize, Eq, Hash, PartialEq, Clone, Serialize)]
|
||||
pub struct PassportData {
|
||||
|
|
Loading…
Reference in a new issue