Praxis_Bot/commands/implemented/command_test_twitch.py
2021-04-09 16:06:09 -04:00

18 lines
483 B
Python

from abc import ABCMeta
from commands.command_base import AbstractCommand
class CommandTest(AbstractCommand, metaclass=ABCMeta):
"""
this is a test command. and a poor excuse for a git commit.
"""
command = "!test"
def __init__(self):
super().__init__(CommandTest.command, command_type=AbstractCommand.CommandType.TWITCH)
def do_command(self, bot, twitch_message):
print("!test Detected")
bot.send_message("testing acknowledged")