mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-12 04:37:50 +01:00
43a4d0e17f
GitOrigin-RevId: dd347635b52b69451a50cca3163fbfbcefb8561e
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()
|