mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
3cc6093e4b
Co-authored-by: -LAN- <laipz8200@outlook.com>
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
|