mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +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
|