kateforsberg's picture
first commit
d477d5c
raw
history blame
212 Bytes
from abc import ABC, abstractmethod
from pathlib import Path
from attrs import define, field
@define()
class BaseParser(ABC):
file_path: Path = field()
@abstractmethod
def parse(self) -> dict: ...