Add WIP restart command

This commit is contained in:
archfan 2019-03-25 14:10:22 -04:00 committed by GitHub
parent 3a8f6a7cd3
commit b6777c5000
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
commands/cmd_restart.py Normal file
View File

@ -0,0 +1,4 @@
async def cmd_restart(message, args):
await message.channel.send("Restarting!")
restart()
register_admin_command("restart", cmd_restart)