9 lines
185 B
Python
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
|