mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-30 13:10:47 +00:00
12 lines
214 B
Python
12 lines
214 B
Python
from abc import ABC, abstractmethod
|
|
from typing import BinaryIO, Any, Dict, Optional
|
|
|
|
|
|
class Parser(ABC):
|
|
|
|
@abstractmethod
|
|
def parse(
|
|
self,
|
|
file_stream: BinaryIO,
|
|
) -> Any:
|
|
pass
|