mirror of
https://github.com/langgenius/dify.git
synced 2026-08-26 18:36:52 -04:00
60cd346fa6
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
15 lines
402 B
Python
15 lines
402 B
Python
from configs.extra.agent_backend_config import AgentBackendConfig
|
|
from configs.extra.archive_config import ArchiveStorageConfig
|
|
from configs.extra.notion_config import NotionConfig
|
|
from configs.extra.sentry_config import SentryConfig
|
|
|
|
|
|
class ExtraServiceConfig(
|
|
# place the configs in alphabet order
|
|
AgentBackendConfig,
|
|
ArchiveStorageConfig,
|
|
NotionConfig,
|
|
SentryConfig,
|
|
):
|
|
pass
|