This commit is contained in:
Owl 2025-05-12 21:23:24 +07:00
parent 8bd07cef52
commit 442b96a5cd
3 changed files with 56 additions and 31 deletions

View file

@ -18,3 +18,8 @@ try:
except AttributeError:
PROMPTING_USERS = None
try:
EXEC_UIDS: list[int] | None = [int(e) for e in os.getenv("EXEC_UIDS").split(" ")]
except AttributeError:
EXEC_UIDS = None