File size: 234 Bytes
f961d6f
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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