Files
viralfactory/src/engines/MetadataEngine/BaseMetadataEngine.py

14 lines
250 B
Python
Raw Normal View History

from abc import abstractmethod
2024-02-23 09:56:54 +01:00
from typing import TypedDict
from .. import BaseEngine
2024-02-20 16:23:15 +01:00
class BaseMetadataEngine(BaseEngine):
def __init__(self, **kwargs) -> None:
...
@abstractmethod
def get_metadata(self) -> None:
2024-02-20 16:23:15 +01:00
...