remove emoji from readme

This commit is contained in:
2025-05-16 19:32:42 +02:00
parent 0a97dcb51d
commit c2955b7b1b
3 changed files with 13 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
{ {
"clangd.arguments": [ "clangd.arguments": [
"--compile-commands-dir=buildDir/" "--compile-commands-dir=build/"
], ],
"clangd.path": "clangd", "clangd.path": "clangd",
} }

View File

@@ -1,26 +1,24 @@
# tgbot # tgbot
A minimal C Telegram API Framework 🚀 A minimal C Telegram API Framework
## 📋 Requirements ## Requirements
- libcurl - libcurl
- json-c - json-c
## 🎯 Goal > Note: This project is purely educational. It does not aim to cover the entire Telegram Bot API, but only a selected subset of methods.
This project is not designed to cover the entire Telegram Bot API. Instead, it focuses on a subset of the API for simplicity.
### Currently Supported Features ### Supported Features
#### 📑 Types #### Types
- **InlineKeyboardMarkup** - **InlineKeyboardMarkup**
- Note: Standard `KeyboardMarkup` is intentionally not supported. - Note: Standard `KeyboardMarkup` is intentionally not supported.
#### ⚙️ Methods #### Methods
- `getMe` - `getMe`
- `sendMessage` - `sendMessage`
- `editMessageText` - `editMessageText`
## 🛠️ Roadmap ## Roadmap
Future planned methods to expand functionality: - `sendPhoto`
- 📸 `sendPhoto` - `sendAudio`
- 🎵 `sendAudio` - `sendDocument`
- 📂 `sendDocument` - `sendVideo`
- 🎥 `sendVideo`

View File

@@ -85,7 +85,7 @@ int main(void) {
tgbot_rc ret; tgbot_rc ret;
char token[256]; char token[256];
FILE *fp = fopen(".token", "r"); FILE *fp = fopen(".token", "r");
if (fp == NULL) { if (fp == NULL) {
fprintf(stderr, "No .token file found!\n"); fprintf(stderr, "No .token file found!\n");