mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 14:35:36 +01:00
add temlates for actions, for exclude merge conflicts
This commit is contained in:
parent
df4259bf60
commit
3cb15025d7
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{}
|
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{}
|
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{}
|
|
@ -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{}
|
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{}
|
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{}
|
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{}
|
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{}
|
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{}
|
Loading…
Reference in a new issue