Model/backend/documents_parser/extractor.py
2026-04-16 13:54:03 +00:00

9 lines
289 B
Python

from datatypes.epc.surveys.pashub_rdsap_site_notes import PasHubRdSapSiteNotes
class PasHubRdSapSiteNotesExtractor:
def __init__(self, text_list: list[str]) -> None:
self.text_list = text_list
def extract(self) -> PasHubRdSapSiteNotes:
raise NotImplementedError