From db2e410ab58fa23fad0282a2519c0d0659384138 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Tue, 28 Oct 2025 07:28:06 -0600 Subject: [PATCH] Test DBGet --- index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/index.js b/index.js index b7f9912..5787719 100644 --- a/index.js +++ b/index.js @@ -24,6 +24,12 @@ const cfTypes = { const startup = async () => { sock.connect().then(() => { console.log(sock.amiVersion) + sock.send({ + action: 'DBGetTree', + category: 'CF' + }).then(async (response) => { + console.log(response) + }) }) }