mirror of
https://github.com/netinvent/npbackup.git
synced 2026-01-13 11:04:32 +08:00
9 lines
252 B
Python
9 lines
252 B
Python
from .loader import Loader, I18nFileLoadError
|
|
from .python_loader import PythonLoader
|
|
from .. import config
|
|
if config.json_available:
|
|
from .json_loader import JsonLoader
|
|
if config.yaml_available:
|
|
from .yaml_loader import YamlLoader
|
|
|
|
del config
|