Skip to content

Commit

Permalink
Add warden dev
Browse files Browse the repository at this point in the history
  • Loading branch information
DragonsRule10 authored Sep 30, 2023
1 parent ac726b2 commit 824044b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions warden dev/main.py
Original file line number Diff line number Diff line change
@@ -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')

0 comments on commit 824044b

Please sign in to comment.