6 lines
66 B
Python
6 lines
66 B
Python
from abc import ABC
|
|
|
|
|
|
class AbstractMetadataEngine(ABC):
|
|
pass
|