mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-29 16:05:35 +08:00
### What problem does this PR solve? As title ### Type of change - [x] Refactoring --------- Signed-off-by: Jin Hai <haijin.chn@gmail.com>
7 lines
180 B
Python
7 lines
180 B
Python
from . import generator
|
|
|
|
__all__ = [name for name in dir(generator)
|
|
if not name.startswith('_')]
|
|
|
|
globals().update({name: getattr(generator, name) for name in __all__})
|