hyperboria/nexus/bot/configs/__init__.py
the-superpirate be61f0300e - feat: Workaround host networking issues in Docker
- feat: Writing docs

GitOrigin-RevId: 4e9303afd4eb5c2b2b906fbcce920e3e22df7177
2021-04-09 15:11:09 +03:00

16 lines
371 B
Python

from izihawa_utils import env
from library.configurator import Configurator
def get_config():
return Configurator([
'nexus/bot/configs/base.yaml',
'nexus/bot/configs/metrics.yaml?',
'nexus/bot/configs/%s.yaml?' % env.type,
'nexus/bot/configs/logging.yaml',
'nexus/bot/configs/promotions.yaml',
])
config = get_config()