mirror of
https://github.com/Paillat-dev/viralfactory.git
synced 2026-01-02 01:06:19 +00:00
15 lines
221 B
Python
15 lines
221 B
Python
from abc import abstractmethod
|
|
|
|
from ..BaseEngine import BaseEngine
|
|
|
|
|
|
class BaseScriptEngine(BaseEngine):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def generate(self) -> None:
|
|
pass
|
|
|
|
def time_script(self):
|
|
...
|