Add constants.py for constants

main
sgoudham 3 years ago
parent 0bf3873c63
commit 6141e339a2
Signed by: hammy
GPG Key ID: 44E818FD5457EEA4

@ -0,0 +1,19 @@
from pathlib import Path
# Guild ID
GUILD_ID = 903322680034492416
# Owner IDs
HAMMY = 154840866496839680
NUGGS = 337175192751308801
LUCA = 216625083186151425
OWNER_IDS = (HAMMY, NUGGS, LUCA)
# Database & Logging Paths
DB_FILE = Path("db", "charity.db")
DB_FILE.parent.mkdir(parents=True, exist_ok=True)
LOG_FILE = Path("logs", "discord.log")
LOG_FILE.parent.mkdir(parents=True, exist_ok=True)
# Socials
TWITCH_CHANNEL = "https://www.twitch.tv/exclamation_mark_charity"
Loading…
Cancel
Save