This commit is contained in:
levina 2021-10-25 15:23:36 +07:00 committed by GitHub
parent d98c1162f1
commit 3d6e93f19a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

15
cache/admins.py vendored Normal file
View File

@ -0,0 +1,15 @@
from config import admins
from typing import Dict, List
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 []