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) + }) }) }