Add constants.py for constants
parent
0bf3873c63
commit
6141e339a2
@ -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…
Reference in New Issue