feat(methods): add sendPhoto

This commit is contained in:
2026-03-19 02:10:52 +01:00
parent c650d3f81c
commit 37ee86a1da
5 changed files with 173 additions and 77 deletions
+1
View File
@@ -11,6 +11,7 @@ int tgbot_get_me(const tgbot_s *bot, tgbot_me_s *me);
int tgbot_send_message(const tgbot_s *bot, int64_t chat_id, const char *text, const char *parse_mode,
tgbot_inlinekeyboard_s *reply_markup);
int tgbot_send_dice(const tgbot_s *bot, int64_t chat_id, const char *emoji);
int tgbot_send_photo(const tgbot_s *bot, int64_t chat_id, const char *path, const char *caption);
/* Updating Methods */
int tgbot_edit_message_text(const tgbot_s *bot, int64_t chat_id, long message_id, const char *text,