Files
encoach_backend/app/services/abc/third_parties/vid_gen.py

9 lines
173 B
Python

from abc import ABC, abstractmethod
class IVideoGeneratorService(ABC):
@abstractmethod
async def create_video(self, text: str, avatar: str):
pass