Skip to content
Snippets Groups Projects
record_path_provider.py 149 B
Newer Older
from abc import ABC, abstractmethod


class RecordPathProvider(ABC):
    @abstractmethod
    def get_path(self, record_id: str) -> str:
        pass