Remove not need environment variable
This commit is contained in:
parent
36dc6d21c8
commit
f418e70aff
|
@ -8,7 +8,5 @@ api_hash = ""
|
||||||
group_id = ""
|
group_id = ""
|
||||||
second_group_id = ""
|
second_group_id = ""
|
||||||
|
|
||||||
vt_api = ""
|
|
||||||
|
|
||||||
db_url = "sqlite://db.db"
|
db_url = "sqlite://db.db"
|
||||||
telegram_api_server = "127.0.0.1:5326"
|
telegram_api_server = "127.0.0.1:5326"
|
||||||
|
|
|
@ -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 |
|
| `api_id` and `api_hash` | Telegram application data |
|
||||||
| `group_id` | Group id |
|
| `group_id` | Group id |
|
||||||
| `second_group_id` | Seconds group for admins |
|
| `second_group_id` | Seconds group for admins |
|
||||||
| `vt_api` | VirusTotalAPI token (optionaly) |
|
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
|
|
|
@ -18,10 +18,6 @@ limit_of_warns = 5
|
||||||
api_id = env.int("api_id")
|
api_id = env.int("api_id")
|
||||||
api_hash = env.str("api_hash")
|
api_hash = env.str("api_hash")
|
||||||
|
|
||||||
# Virus Total API
|
|
||||||
vt_api = env.str("vt_api")
|
|
||||||
|
|
||||||
|
|
||||||
group_permissions = {
|
group_permissions = {
|
||||||
"can_send_messages":True,
|
"can_send_messages":True,
|
||||||
"can_send_media_messages":False,
|
"can_send_media_messages":False,
|
||||||
|
|
Reference in New Issue