mirror of
https://ghfast.top/https://github.com/aeroxw/tick-stock-panel.git
synced 2026-09-12 22:34:18 +08:00
39 lines
737 B
Python
39 lines
737 B
Python
"""Custom data source extension points."""
|
|
from app.data_providers.custom.loader import (
|
|
create_provider,
|
|
data_sources_dir,
|
|
delete_config,
|
|
errors,
|
|
get_config_dict,
|
|
get_provider,
|
|
install_plugin,
|
|
is_builtin,
|
|
is_custom_provider,
|
|
list_plugins,
|
|
list_sources,
|
|
load_all,
|
|
names,
|
|
provider_has_dataset,
|
|
save_config,
|
|
uninstall_plugin,
|
|
)
|
|
|
|
__all__ = [
|
|
"create_provider",
|
|
"data_sources_dir",
|
|
"delete_config",
|
|
"errors",
|
|
"get_config_dict",
|
|
"get_provider",
|
|
"install_plugin",
|
|
"is_builtin",
|
|
"is_custom_provider",
|
|
"list_plugins",
|
|
"list_sources",
|
|
"load_all",
|
|
"names",
|
|
"provider_has_dataset",
|
|
"save_config",
|
|
"uninstall_plugin",
|
|
]
|