16 lines
285 B
Python
16 lines
285 B
Python
from abc import ABCMeta
|
|
|
|
from commands.command_base import AbstractCommand
|
|
|
|
|
|
class CommandTTS(AbstractCommand, metaclass=ABCMeta):
|
|
|
|
command = "!tts"
|
|
|
|
def __init__(self):
|
|
super().__init__(CommandTTS.command)
|
|
|
|
def do_command(self, fulltext):
|
|
print(fulltext)
|
|
|