Initial commit

This commit is contained in:
2026-02-23 22:48:25 +00:00
commit b8182ead88
46 changed files with 1845 additions and 0 deletions

13
Bot/utils/constants.py Normal file
View File

@@ -0,0 +1,13 @@
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