mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-02-15 19:46:47 +01:00
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()
|