mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-10 20:12:25 +01:00
Remove pub(crate) from SetWebhook
This commit is contained in:
parent
c84494c8fd
commit
b18cb84df0
1 changed files with 4 additions and 4 deletions
|
@ -29,10 +29,10 @@ use std::sync::Arc;
|
|||
pub struct SetWebhook {
|
||||
#[serde(skip_serializing)]
|
||||
bot: Arc<Bot>,
|
||||
pub(crate) url: String,
|
||||
pub(crate) certificate: Option<InputFile>,
|
||||
pub(crate) max_connections: Option<i32>,
|
||||
pub(crate) allowed_updates: Option<Vec<AllowedUpdate>>,
|
||||
url: String,
|
||||
certificate: Option<InputFile>,
|
||||
max_connections: Option<i32>,
|
||||
allowed_updates: Option<Vec<AllowedUpdate>>,
|
||||
}
|
||||
|
||||
#[async_trait::async_trait]
|
||||
|
|
Loading…
Reference in a new issue