File "C:\Users\artem\Desktop\bebra\bot\botrun.py", line 11
@bot.command()
^
IndentationError: expected an indented block after function definition on line 8
import discord
from discord.ext import commands
import os
bot = commands.Bot(command_prefix="!")
@bot.event
async def on_ready():
@bot.command()
async def test(ctx):
await ctx.send("test")
bot.run(os.getenv("TOKEN"))