Files
DeletedPosts/Bot/utils/constants.py
2026-02-23 22:48:25 +00:00

14 lines
201 B
Python

from pathlib import Path
__all__ = (
'BASE_DIR',
'BOT_NAME',
'MSG_AWAIT_THRESHOLD',
)
BOT_NAME = 'CraftSleuthBot'
BASE_DIR = Path(__file__).parent.parent.parent
MSG_AWAIT_THRESHOLD = 5