You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 256B

123456789101112
  1. from pydantic import BaseModel
  2. from configs.extra.notion_config import NotionConfig
  3. from configs.extra.sentry_config import SentryConfig
  4. class ExtraServiceConfig(
  5. # place the configs in alphabet order
  6. NotionConfig,
  7. SentryConfig,
  8. ):
  9. pass