# Make sure you don't have a command called "commands"
@client.command() # As usual
@commands.is_owner() # Making sure the person executing the command is the owner
async def foo(ctx):
await ctx.send("Hello")
#ect
@bot.command(pass_context = True)
@commands.is_owner()
async def say(ctx):
your code...