summaryrefslogtreecommitdiff
path: root/bot.py
blob: 7a794c672959e022fd0b4cd3a9ab4310afefd34d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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')