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)