mirror of
https://github.com/miaowware/qrm2.git
synced 2025-07-06 01:55:16 -04:00
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)
|