mirror of
https://github.com/Paillat-dev/viralfactory.git
synced 2026-01-02 17:24:54 +00:00
14 lines
258 B
Python
14 lines
258 B
Python
from abc import abstractmethod
|
|
|
|
from ..BaseEngine import BaseEngine
|
|
|
|
|
|
class BaseMetadataEngine(BaseEngine):
|
|
def __init__(self, **kwargs) -> None:
|
|
super().__init__()
|
|
...
|
|
|
|
@abstractmethod
|
|
def get_metadata(self) -> None:
|
|
...
|