python-mastery/Solutions/9_3/structly/__init__.py
2023-07-16 20:21:00 -05:00

10 lines
196 B
Python

# structly/__init__.py
from .structure import *
from .reader import *
from .tableformat import *
__all__ = [ *structure.__all__,
*reader.__all__,
*tableformat.__all__ ]