Files
encoach_backend/app/services/abc/third_parties/vid_gen.py
2024-10-01 19:31:01 +01:00

11 lines
221 B
Python

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