Files
encoach_backend/app/services/abc/third_parties/vid_gen.py
Cristiano Ferreira b473b30a75 Fix video generation
2024-11-08 19:05:29 +00:00

9 lines
185 B
Python

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