lambda/src/ui/editor/__init__.py

7 lines
123 B
Python

from .book_editor import *
from .member_editor import *
__all__ = [
*book_editor.__all__,
*member_editor.__all__
]