Merge pull request #18 from async-telegram-bot/feature/templatesForActions

Feature/templates for actions
This commit is contained in:
Waffle Lapkin 2019-09-12 19:39:54 +03:00 committed by GitHub
commit 9e16be8b9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,3 @@
//TODO: need implementation
struct GetFile<'a>{}

View file

@ -0,0 +1,3 @@
//TODO: need implementation
struct GetUserProfilePhotos<'a>{}

View file

@ -0,0 +1,3 @@
//TODO: need implementation
struct KickChatMember<'a>{}

View file

@ -97,3 +97,12 @@ pub mod send_audio;
pub mod send_location;
pub mod edit_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;

View file

@ -0,0 +1,3 @@
//TODO: need implementation
struct RestrictChatMember<'a>{}

View file

@ -0,0 +1,3 @@
//TODO: need implementation
struct SendChatAction<'a>{}

View file

@ -0,0 +1,3 @@
//TODO: need implementation
struct SendContact<'a>{}

View file

@ -0,0 +1,3 @@
//TODO: need implementation
struct SendPoll<'a>{}

View file

@ -0,0 +1,3 @@
//TODO:need implementation
struct SendVenue<'a>{}

View file

@ -0,0 +1,3 @@
//TODO: need implementation
struct UnbanChatMember<'a>{}