|
@@ -26,8 +26,8 @@ def get_secret(key):
|
|
|
return c
|
|
|
|
|
|
BOTS_LOOKUP = get_secret("bots")
|
|
|
-GLOBAL_ADMINS = get_config("auths.global")
|
|
|
-GROUP_ADMINS = get_config("auths.group")
|
|
|
+GLOBAL_ADMINS = get_secret("auths.global")
|
|
|
+GROUP_ADMINS = get_secret("auths.group")
|
|
|
PLUGINS = get_config("plugins")
|
|
|
API_KEY = get_secret("api_key")
|
|
|
POSTGRES = f'{get_config("postgres.user")}:{get_secret("postgres.pass")}@{get_config("postgres.host")}/{get_config("postgres.db")}'
|