mirror of
https://ghfast.top/https://github.com/aeroxw/tick-stock-panel.git
synced 2026-09-12 14:24:15 +08:00
29 lines
533 B
Python
29 lines
533 B
Python
"""Custom data source extension points."""
|
|
from app.data_providers.custom.loader import (
|
|
data_sources_dir,
|
|
delete_config,
|
|
errors,
|
|
get_config_dict,
|
|
get_provider,
|
|
is_custom_provider,
|
|
list_sources,
|
|
load_all,
|
|
names,
|
|
provider_has_dataset,
|
|
save_config,
|
|
)
|
|
|
|
__all__ = [
|
|
"data_sources_dir",
|
|
"delete_config",
|
|
"errors",
|
|
"get_config_dict",
|
|
"get_provider",
|
|
"is_custom_provider",
|
|
"list_sources",
|
|
"load_all",
|
|
"names",
|
|
"provider_has_dataset",
|
|
"save_config",
|
|
]
|