Test DBGet

This commit is contained in:
Christopher Cookman 2025-10-28 07:28:06 -06:00
parent 0ddf6dac99
commit db2e410ab5

View file

@ -24,6 +24,12 @@ const cfTypes = {
const startup = async () => { const startup = async () => {
sock.connect().then(() => { sock.connect().then(() => {
console.log(sock.amiVersion) console.log(sock.amiVersion)
sock.send({
action: 'DBGetTree',
category: 'CF'
}).then(async (response) => {
console.log(response)
})
}) })
} }