dank-bot-py/plugins/pepe/plugin.py

11 lines
241 B
Python

from discord.ext import commands
import discord
@commands.command()
async def hello(ctx):
await ctx.send(f'Hello {ctx.author.display_name}.')
async def setup(bot):
print("I am being loaded!")
bot.add_command(hello)