mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-16 14:56:58 +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
|