diff options
| -rw-r--r-- | client/stt.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/stt.py b/client/stt.py index af252c3..7ed7403 100644 --- a/client/stt.py +++ b/client/stt.py @@ -24,6 +24,10 @@ class AbstractSTTEngine(object): __metaclass__ = ABCMeta @classmethod + def get_config(cls): + return {} + + @classmethod @abstractmethod def is_available(cls): return True |
