mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-11 20:27:50 +01:00
14 lines
283 B
Python
14 lines
283 B
Python
|
from izihawa_utils import env
|
||
|
from library.configurator import Configurator
|
||
|
|
||
|
|
||
|
def get_config():
|
||
|
return Configurator([
|
||
|
'nexus/hub/configs/base.yaml',
|
||
|
'nexus/hub/configs/%s.yaml?' % env.type,
|
||
|
'nexus/hub/configs/logging.yaml',
|
||
|
])
|
||
|
|
||
|
|
||
|
config = get_config()
|