I am not sure why the commands don't work. Whenever I enter !hello into my discord server the bot doesnt respond.
import discord
from discord.ext import commands
import os
my_secret = os.environ['Token']
client = commands.Bot(command_prefix='!')
@client.command(pass_context=True)
async def hello(ctx):
await ctx.send("Hello")
client.run(my_secret)