8 lines
125 B
Python
8 lines
125 B
Python
from discord.ext import commands
|
|
from .away import Away
|
|
|
|
|
|
def setup(bot: commands.Bot):
|
|
n = Away(bot)
|
|
bot.add_cog(n)
|