mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-25 18:07:34 +01:00
a683e0ce18
- [nexus] Development GitOrigin-RevId: 5d5feedff7b70be4c788abeb22f89c6758431d33
14 lines
299 B
Python
14 lines
299 B
Python
from izihawa_configurator import Configurator
|
|
from izihawa_utils import env
|
|
|
|
|
|
def get_config():
|
|
return Configurator([
|
|
'idm/api/configs/base.yaml',
|
|
'idm/api/configs/%s.yaml?' % env.type,
|
|
'idm/api/configs/logging.yaml',
|
|
], env_prefix='IDM_API')
|
|
|
|
|
|
config = get_config()
|