diff --git a/warden dev/main.py b/warden dev/main.py new file mode 100644 index 0000000..89f51c8 --- /dev/null +++ b/warden dev/main.py @@ -0,0 +1,16 @@ +import discord +from discord.ext import commands + +class MyBot(commands.Bot): + def __init__(self): + super().__init__(command_prefix='!') + + @commands.command() + async def ping(self, ctx): + await ctx.send('pong!') + + async def on_ready(self): + print('Bot is ready!') + +bot = MyBot() +bot.run('MTE1Nzc4Nzc5OTkyNDI0NDUxMA.G7Bfo-.pTXvqvcs5Hj3BSVWQjl2VsISpwkfT59tpnp0tU') \ No newline at end of file