7 lines
123 B
Python
7 lines
123 B
Python
from .book_editor import *
|
|
from .member_editor import *
|
|
|
|
__all__ = [
|
|
*book_editor.__all__,
|
|
*member_editor.__all__
|
|
] |