Files
encoach_backend/app/services/abc/third_parties/vid_gen.py
Carlos Mesquita 3cf9fa5cba Async release
2024-07-23 08:40:35 +01:00

11 lines
211 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