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