qrm2/main.py
0x5c a1da6a32e0
*And thus, a new bot was born.*
No but seriously, the bot works, yay!
- Even got a nice makefile to automagically setup everything. *majiks!*
2019-10-03 22:17:36 -04:00

23 lines
289 B
Python

#!/usr/bin/env python3
"""
Qrm, a bot for Discord
---
[copyright here]
"""
import discord
import discord.ext.commands as commands
import info
import options as opt
import keys
bot = commands.Bot(command_prefix=opt.prefix, description=info.description)
bot.run(keys.discord_token)