This commit is contained in:
doms9 2025-09-04 09:59:19 -04:00
parent 1257f84f58
commit 00000d940e
6 changed files with 29 additions and 48 deletions

View file

@ -1,3 +1,10 @@
from .config import LOGOS, TZ, get_base, get_logger, safe_process_event
from .config import LOGOS, TZ, get_base, get_logger, now, safe_process_event
__all__ = ["LOGOS", "TZ", "get_base", "get_logger", "safe_process_event"]
__all__ = [
"LOGOS",
"TZ",
"get_base",
"get_logger",
"now",
"safe_process_event",
]

View file

@ -1,5 +1,6 @@
import asyncio
import logging
from datetime import datetime
from pathlib import Path
from typing import Any
@ -8,6 +9,8 @@ import pytz
TZ = pytz.timezone("America/New_York")
now = datetime.now(TZ)
LOGOS = {
"MLB": "https://i.gyazo.com/0fe7865ef2f06c9507791b24f04dbca8.png",
"NBA": "https://i.gyazo.com/773c23570f095a5d549c23b9401d83f4.png",