From e5337b5d32faba8e412ed6ef02fd3c10e6ab9d7b Mon Sep 17 00:00:00 2001 From: Nikhil Nawgiri Date: Tue, 10 Sep 2024 15:45:53 +0200 Subject: [PATCH] Update config example file --- config.ts.example | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/config.ts.example b/config.ts.example index 8d5083d..92a9009 100644 --- a/config.ts.example +++ b/config.ts.example @@ -1,9 +1,7 @@ -module.exports = { - config: { - "homeserverUrl": "", - "accessToken": "", - "storageLocation": "bot.json", - "cryptoFolderLocation": "crypto" - "openaiApiKey": "", - } +export const config = { + "homeserverUrl": "", + "accessToken": "", + "storageLocation": "bot.json", + "cryptoFolderLocation": "crypto", + "openaiApiKey": "", }