Files
OSACA/osaca/parser/__init__.py
2019-06-04 12:55:32 +02:00

11 lines
309 B
Python

"""
Collection of parsers supported by OSACA.
Only the parser below will be exported, so please add new parsers to __all__.
"""
from .attr_dict import AttrDict
from .parser_x86att import ParserX86ATT
from .parser_AArch64v81 import ParserAArch64v81
__all__ = ['AttrDict', 'ParserX86ATT', 'ParserAArch64v81']