12 lines
145 B
Python
12 lines
145 B
Python
from .fifo import FIFO
|
|
|
|
|
|
async def setup(bot):
|
|
cog = FIFO(bot)
|
|
bot.add_cog(cog)
|
|
await cog.initialize()
|
|
|
|
|
|
def teardown(bot):
|
|
pass
|