9 lines
160 B
Python
9 lines
160 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class ISpeechToTextService(ABC):
|
|
|
|
@abstractmethod
|
|
async def speech_to_text(self, file_path):
|
|
pass
|