worky
This commit is contained in:
18
config.py
Normal file
18
config.py
Normal file
@@ -0,0 +1,18 @@
|
||||
import os
|
||||
import discord
|
||||
from dotenv import load_dotenv
|
||||
|
||||
# Load .env file (if it exists) for local testing
|
||||
load_dotenv()
|
||||
|
||||
class Config:
|
||||
# Secrets
|
||||
BOT_TOKEN = os.getenv("DISCORD_TOKEN", "YOUR_FALLBACK_TOKEN_HERE")
|
||||
|
||||
# Settings
|
||||
LOG_CHANNEL_NAME = "real-chat-logs"
|
||||
EMBED_LIMIT = 1000
|
||||
|
||||
# Colors
|
||||
COLOR_DELETE = discord.Color.red()
|
||||
COLOR_EDIT = discord.Color.orange()
|
||||
Reference in New Issue
Block a user