17 lines
302 B
Python
17 lines
302 B
Python
from typing import Dict, List
|
|
# from config import admins
|
|
from config import Veez
|
|
|
|
|
|
admins: Dict[int, List[int]] = {}
|
|
|
|
|
|
def set(chat_id: int, admins_: List[int]):
|
|
admins[chat_id] = admins_
|
|
|
|
|
|
def get(chat_id: int) -> List[int]:
|
|
if chat_id in admins:
|
|
return admins[chat_id]
|
|
return []
|