From 07776d8699ae6767765e8fcea8b0c66f39dfd12f Mon Sep 17 00:00:00 2001 From: ItzCrazyKns <95534749+ItzCrazyKns@users.noreply.github.com> Date: Sat, 1 Mar 2025 22:13:38 +0530 Subject: [PATCH] feat(config): remove key cloak config functions --- src/config.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/config.ts b/src/config.ts index 8b94f16..bf1277d 100644 --- a/src/config.ts +++ b/src/config.ts @@ -119,12 +119,6 @@ export const getCustomOpenaiApiUrl = () => export const getCustomOpenaiModelName = () => loadConfig().MODELS.CUSTOM_OPENAI.MODEL_NAME; -export const getKeyCloakUrl = () => loadConfig().KEYCLOAK.URL; - -export const getKeyCloakRealm = () => loadConfig().KEYCLOAK.REALM; - -export const getKeyCloakClientId = () => loadConfig().KEYCLOAK.CLIENT_ID; - const mergeConfigs = (current: any, update: any): any => { if (update === null || update === undefined) { return current;