zenafey's picture
Update bot.py
b44cb3d
raw
history blame contribute delete
237 Bytes
import discord
from discord.ext import commands
import os
bot = commands.Bot(command_prefix="!", intents=discord.Intents.all())
@bot.command()
async def test(ctx):
await ctx.reply(ctx.message.content)
bot.run(os.getenv('discord'))