2024-06-22 09:54:25 +08:00
|
|
|
from configs.extra.notion_config import NotionConfig
|
|
|
|
from configs.extra.sentry_config import SentryConfig
|
2024-06-19 13:41:12 +08:00
|
|
|
|
|
|
|
|
2024-06-22 09:54:25 +08:00
|
|
|
class ExtraServiceConfig(
|
2024-06-19 13:41:12 +08:00
|
|
|
# place the configs in alphabet order
|
2024-06-22 09:54:25 +08:00
|
|
|
NotionConfig,
|
|
|
|
SentryConfig,
|
2024-06-19 13:41:12 +08:00
|
|
|
):
|
|
|
|
pass
|