summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--bot.py20
2 files changed, 21 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..4c49bd7
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.env
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')