mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-21 09:07:46 +01:00
681817ceae
GitOrigin-RevId: 83514338be1d662518bab9fe5ab6eefef98f229f
17 lines
415 B
Python
17 lines
415 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/custom.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()
|