9 lines
132 B
Python
9 lines
132 B
Python
|
|
|
|
from redbot.core.bot import Red
|
|
|
|
from .csvparse import CSVParse
|
|
|
|
|
|
async def setup(bot: Red):
|
|
await bot.add_cog(CSVParse(bot))
|