I have no time to review my commit

This commit is contained in:
2024-02-27 14:24:25 +01:00
parent c70872a0e5
commit 166eff8a8a
23 changed files with 400 additions and 53 deletions

View File

@@ -0,0 +1,9 @@
from abc import abstractmethod
from ..BaseEngine import BaseEngine
class BaseAudioBackgroundEngine(BaseEngine):
@abstractmethod
def get_background(self) -> None:
...