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