mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
13 lines
256 B
Python
13 lines
256 B
Python
from pydantic import BaseModel
|
|
|
|
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
|