GoldyBot.utility.msgs.unload
1import GoldyBot.utility.goldy.colours as colours 2 3help_des = 'An admin command for unloading modules in GoldyBot.' 4 5module = "๐ค Module" 6module_blue = "๐ Module" 7module_orange = "๐งก Module" 8 9class UnloadedEmbed: 10 title = f'{module} Unloaded!' 11 des = '''**``{}`` has been unloaded! ๐**''' 12 colour = colours.GREY 13 14 thumbnail = "https://www.pngitem.com/pimgs/m/684-6848954_anime-thumbs-up-png-png-download-transparent-png.png" 15 16class ModuleNotFoundEmbed: 17 title = f"{module_blue} Not Found!" 18 des = "**The Module ``{}`` was not Found!**" 19 colour = colours.AKI_BLUE 20 21class AdminCanNotBeUnloadedEmbed: 22 title = f"{module_orange} Not Allowed!" 23 des = "**The admin module can not be reloaded!**" 24 colour = colours.AKI_ORANGE
class
UnloadedEmbed:
class
ModuleNotFoundEmbed:
class
AdminCanNotBeUnloadedEmbed: