mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-08 19:33:53 +01:00
Merge pull request #18 from async-telegram-bot/feature/templatesForActions
Feature/templates for actions
This commit is contained in:
commit
9e16be8b9c
10 changed files with 36 additions and 0 deletions
3
src/core/requests/get_file.rs
Normal file
3
src/core/requests/get_file.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
|
||||||
|
//TODO: need implementation
|
||||||
|
struct GetFile<'a>{}
|
3
src/core/requests/get_user_profile_photos.rs
Normal file
3
src/core/requests/get_user_profile_photos.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
|
||||||
|
//TODO: need implementation
|
||||||
|
struct GetUserProfilePhotos<'a>{}
|
3
src/core/requests/kick_chat_member.rs
Normal file
3
src/core/requests/kick_chat_member.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
|
||||||
|
//TODO: need implementation
|
||||||
|
struct KickChatMember<'a>{}
|
|
@ -97,3 +97,12 @@ pub mod send_audio;
|
||||||
pub mod send_location;
|
pub mod send_location;
|
||||||
pub mod edit_message_live_location;
|
pub mod edit_message_live_location;
|
||||||
pub mod stop_message_live_location;
|
pub mod stop_message_live_location;
|
||||||
|
pub mod send_venue;
|
||||||
|
pub mod send_contact;
|
||||||
|
pub mod send_poll;
|
||||||
|
pub mod send_chat_action;
|
||||||
|
pub mod get_user_profile_photos;
|
||||||
|
pub mod get_file;
|
||||||
|
pub mod kick_chat_member;
|
||||||
|
pub mod unban_chat_member;
|
||||||
|
pub mod restrict_chat_member;
|
||||||
|
|
3
src/core/requests/restrict_chat_member.rs
Normal file
3
src/core/requests/restrict_chat_member.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
|
||||||
|
//TODO: need implementation
|
||||||
|
struct RestrictChatMember<'a>{}
|
3
src/core/requests/send_chat_action.rs
Normal file
3
src/core/requests/send_chat_action.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
|
||||||
|
//TODO: need implementation
|
||||||
|
struct SendChatAction<'a>{}
|
3
src/core/requests/send_contact.rs
Normal file
3
src/core/requests/send_contact.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
|
||||||
|
//TODO: need implementation
|
||||||
|
struct SendContact<'a>{}
|
3
src/core/requests/send_poll.rs
Normal file
3
src/core/requests/send_poll.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
|
||||||
|
//TODO: need implementation
|
||||||
|
struct SendPoll<'a>{}
|
3
src/core/requests/send_venue.rs
Normal file
3
src/core/requests/send_venue.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
|
||||||
|
//TODO:need implementation
|
||||||
|
struct SendVenue<'a>{}
|
3
src/core/requests/unban_chat_member.rs
Normal file
3
src/core/requests/unban_chat_member.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
|
||||||
|
//TODO: need implementation
|
||||||
|
struct UnbanChatMember<'a>{}
|
Loading…
Reference in a new issue