6 lines
144 B
Python
6 lines
144 B
Python
|
|
from redbot.core.bot import Red
|
||
|
|
from .fitness import FitnessCog
|
||
|
|
|
||
|
|
async def setup(bot: Red):
|
||
|
|
cog = FitnessCog(bot)
|
||
|
|
await bot.add_cog(cog)
|