openpdf-backend / app /parser /interface.py
zinoubm's picture
initial commit
66340f1
raw
history blame contribute delete
132 Bytes
from abc import ABC, abstractmethod
class ParserInterface(ABC):
@abstractmethod
def parse(file_path) -> str:
pass