11 lines
221 B
Python
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
|