Files
DeletedPosts/Bot/utils/constants.py

14 lines
201 B
Python
Raw Normal View History

2026-02-23 22:48:25 +00:00
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