mirror of
https://github.com/Paillat-dev/viralfactory.git
synced 2026-01-02 01:06:19 +00:00
10 lines
180 B
Python
10 lines
180 B
Python
from abc import abstractmethod
|
|
|
|
from ..BaseEngine import BaseEngine
|
|
|
|
|
|
class BaseBackgroundEngine(BaseEngine):
|
|
@abstractmethod
|
|
def get_background(self) -> None:
|
|
...
|