tg-bot/tipbot/helpers/utils.py
2020-08-05 22:52:36 -07:00

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