dify / api /configs /extra /__init__.py
Severian's picture
initial commit
a8b3f00
raw
history blame
224 Bytes
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