mirror of
https://github.com/Paillat-dev/viralfactory.git
synced 2026-01-02 17:24:54 +00:00
9 lines
177 B
Python
9 lines
177 B
Python
from abc import abstractmethod
|
|
|
|
from ..BaseEngine import BaseEngine
|
|
|
|
|
|
class BaseAudioBackgroundEngine(BaseEngine):
|
|
@abstractmethod
|
|
def get_background(self) -> None: ...
|