Files
2025-12-24 02:06:17 +01:00

8 lines
197 B
Python

from config import config
def is_user_admin(user_id: int) -> bool:
return user_id in config.ADMIN_IDS
def is_chat_allowed(chat_id: int) -> bool:
return chat_id in config.ALLOWED_CHAT_IDS