mirror of
https://git.wownero.com/lza_menace/tg-bot.git
synced 2024-08-15 00:23:12 +00:00
7 lines
142 B
Python
7 lines
142 B
Python
from tipbot import config
|
|
|
|
def is_tg_admin(chat_id):
|
|
if chat_id == config.TG_ADMIN_ID:
|
|
return True
|
|
else:
|
|
return False
|