mirror of
https://github.com/miaowware/qrm2.git
synced 2024-11-13 03:31:50 -05:00
a1da6a32e0
No but seriously, the bot works, yay! - Even got a nice makefile to automagically setup everything. *majiks!*
23 lines
289 B
Python
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)
|