mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
11 lines
224 B
Python
11 lines
224 B
Python
from configs.extra.notion_config import NotionConfig
|
|
from configs.extra.sentry_config import SentryConfig
|
|
|
|
|
|
class ExtraServiceConfig(
|
|
# place the configs in alphabet order
|
|
NotionConfig,
|
|
SentryConfig,
|
|
):
|
|
pass
|