mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-06-04 11:14:10 +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
|