diff --git a/.env.dist b/.env.dist index d0aeb36..1a835ae 100644 --- a/.env.dist +++ b/.env.dist @@ -8,7 +8,5 @@ api_hash = "" group_id = "" second_group_id = "" -vt_api = "" - db_url = "sqlite://db.db" telegram_api_server = "127.0.0.1:5326" diff --git a/README.md b/README.md index 18fbf89..04dabf1 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,6 @@ This bot is designed to simplify the moderation and management of Telegram group | `api_id` and `api_hash` | Telegram application data | | `group_id` | Group id | | `second_group_id` | Seconds group for admins | -| `vt_api` | VirusTotalAPI token (optionaly) | ## TODO diff --git a/config/config.py b/config/config.py index 792572b..d545e86 100644 --- a/config/config.py +++ b/config/config.py @@ -18,10 +18,6 @@ limit_of_warns = 5 api_id = env.int("api_id") api_hash = env.str("api_hash") -# Virus Total API -vt_api = env.str("vt_api") - - group_permissions = { "can_send_messages":True, "can_send_media_messages":False,