builtup4/bu4/parsing/abstractparser.py
2021-08-20 05:41:23 +03:00

13 lines
244 B
Python

# Copyright (c) PARRRATE T&V 2021. All rights reserved.
__all__ = ('AbstractParser',)
class AbstractParser:
def read(self) -> int:
raise NotImplementedError
def parse_name(self) -> bytes:
raise NotImplementedError