summaryrefslogtreecommitdiff
path: root/bot.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot.py')
-rw-r--r--bot.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/bot.py b/bot.py
new file mode 100644
index 0000000..7a794c6
--- /dev/null
+++ b/bot.py
@@ -0,0 +1,20 @@
+import discord
+from discord.ext import commands
+
+BOT_NAME = "Cupido"
+
+client = discord.Client()
+bot = commands.Bot(command_prefix='!<3')
+
+
+@client.event
+async def on_ready():
+ print('{0} is logged in as {1.user}'.format(BOT_NAME, client))
+
+
+@bot.command()
+async def init(ctx):
+ pass
+
+
+client.run('token')