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:
10class UnloadedEmbed:
11    title = f'{module} Unloaded!'
12    des = '''**``{}`` has been unloaded! ๐Ÿ‘**'''
13    colour = colours.GREY
14
15    thumbnail = "https://www.pngitem.com/pimgs/m/684-6848954_anime-thumbs-up-png-png-download-transparent-png.png"
UnloadedEmbed()
title = '๐Ÿ–ค Module Unloaded!'
des = '**``{}`` has been unloaded! ๐Ÿ‘**'
colour = 3881787
thumbnail = 'https://www.pngitem.com/pimgs/m/684-6848954_anime-thumbs-up-png-png-download-transparent-png.png'
class ModuleNotFoundEmbed:
17class ModuleNotFoundEmbed:
18    title = f"{module_blue} Not Found!"
19    des = "**The Module ``{}`` was not Found!**"
20    colour = colours.AKI_BLUE
ModuleNotFoundEmbed()
title = '๐Ÿ’™ Module Not Found!'
des = '**The Module ``{}`` was not Found!**'
colour = 7726810
class AdminCanNotBeUnloadedEmbed:
22class AdminCanNotBeUnloadedEmbed:
23    title = f"{module_orange} Not Allowed!"
24    des = "**The admin module can not be reloaded!**"
25    colour = colours.AKI_ORANGE
AdminCanNotBeUnloadedEmbed()
title = '๐Ÿงก Module Not Allowed!'
des = '**The admin module can not be reloaded!**'
colour = 16027660