8 lines
197 B
Python
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
|