You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
473 B
Python
20 lines
473 B
Python
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"
|