builtup4/bu4/parsing/abstractparser.py
2021-08-01 01:17:46 +03:00

9 lines
173 B
Python

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