discord-bot-demo/command.py

18 lines
272 B
Python

from discord.ext import commands
from os import getenv
bot = commands.Bot(command_prefix=getenv("PREFIX"))
@bot.command()
async def echo(ctx, arg):
print(arg)
await ctx.send(arg)
def main():
bot.run(getenv("TOKEN"))
if __name__ == "__main__":
main()