mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-10 03:16:51 +08:00
13 lines
263 B
Python
13 lines
263 B
Python
from pydantic import BaseModel
|
|
|
|
from configs.extra.notion_configs import NotionConfigs
|
|
from configs.extra.sentry_configs import SentryConfigs
|
|
|
|
|
|
class ExtraServiceConfigs(
|
|
# place the configs in alphabet order
|
|
NotionConfigs,
|
|
SentryConfigs,
|
|
):
|
|
pass
|