26 lines
660 B
Python
26 lines
660 B
Python
|
from .autoprayer import AutoPrayer
|
||
|
from .suggestionbox import SuggestionBox
|
||
|
from .custom_reactions import CustomReactions
|
||
|
|
||
|
from .entrycontrolresponder import EntryControlResponder
|
||
|
|
||
|
from .fun import Fun
|
||
|
from .standards import Standards
|
||
|
|
||
|
from ..reactrole.reactrole import ReactRole
|
||
|
from .quotes import Quotes
|
||
|
|
||
|
async def setup(bot):
|
||
|
await bot.add_cog(AutoPrayer(bot))
|
||
|
await bot.add_cog(SuggestionBox(bot))
|
||
|
await bot.add_cog(CustomReactions())
|
||
|
|
||
|
await bot.add_cog(Fun())
|
||
|
await bot.add_cog(Standards(bot))
|
||
|
|
||
|
await bot.add_cog(ReactRole(bot))
|
||
|
|
||
|
ecr = EntryControlResponder()
|
||
|
await bot.add_cog(ecr)
|
||
|
|
||
|
await bot.add_cog(Quotes(bot))
|