dify / api /configs /extra /__init__.py
CatPtain's picture
Upload 181 files
f71c799 verified
raw
history blame contribute delete
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