GoldyBot.utility.msgs.reload
1import GoldyBot.utility.goldy.colours as colours 2 3help_des = 'An admin command for reloading the modules in GoldyBot.' 4 5module = "๐ Module" 6module_red = "โค๏ธ Module" 7module_blue = "๐ Module" 8module_orange = "๐งก Module" 9 10class ReloadedEmbed: 11 title = f'{module} Reloaded!' 12 des = '''**``{}`` has been reloaded! ๐**''' 13 colour = colours.PURPLE 14 15 thumbnail = "https://www.pngitem.com/pimgs/m/684-6848954_anime-thumbs-up-png-png-download-transparent-png.png" 16 17class FailedToLoadEmbed: 18 title = f"{module_red} Failed to Load!" 19 des = "**The Module ``{}`` failed to load!**" 20 colour = colours.RED 21 22class ModuleNotFoundEmbed: 23 title = f"{module_blue} Not Found!" 24 des = "**The Module ``{}`` was not Found!**" 25 colour = colours.AKI_BLUE 26 27class AdminCanNotBeReloadedEmbed: 28 title = f"{module_orange} Not Allowed!" 29 des = "**The admin module can not be reloaded!**" 30 colour = colours.AKI_ORANGE
class
ReloadedEmbed:
class
FailedToLoadEmbed:
class
ModuleNotFoundEmbed:
class
AdminCanNotBeReloadedEmbed: