mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
Chaging the folders and creating a separeted class for messages
This commit is contained in:
@@ -2,7 +2,7 @@ from decouple import config
|
||||
from Config.Singleton import Singleton
|
||||
|
||||
|
||||
class Config(Singleton):
|
||||
class Configs(Singleton):
|
||||
def __init__(self) -> None:
|
||||
if not super().created:
|
||||
self.BOT_TOKEN = config('BOT_TOKEN')
|
||||
@@ -80,10 +80,10 @@ class Config(Singleton):
|
||||
self.INVITE_URL = 'https://discordapp.com/oauth2/authorize?client_id={}&scope=bot>'
|
||||
self.VIDEO_UNAVAILABLE = '❌ Sorry. This video is unavailable for download.'
|
||||
|
||||
self.COLOURS = {
|
||||
'red': 0xDC143C,
|
||||
'green': 0x1F8B4C,
|
||||
'grey': 0x708090,
|
||||
'blue': 0x206694,
|
||||
'black': 0x23272A
|
||||
}
|
||||
self.COLOURS = {
|
||||
'red': 0xDC143C,
|
||||
'green': 0x1F8B4C,
|
||||
'grey': 0x708090,
|
||||
'blue': 0x206694,
|
||||
'black': 0x23272A
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user