Files
cell/tests/contact.js
John Alanbrook bab09fed6d
Some checks failed
Build and Deploy / build-linux (push) Failing after 1m22s
Build and Deploy / build-windows (CLANG64) (push) Failing after 10m30s
Build and Deploy / package-dist (push) Has been skipped
Build and Deploy / deploy-itch (push) Has been skipped
Build and Deploy / deploy-gitea (push) Has been skipped
add documentation
2025-03-09 21:53:25 -05:00

13 lines
245 B
JavaScript

// Test to connect to a portal
$_.contact((actor, reason) => {
if (actor)
console.log(`Got an actor: ${actor}`)
else
console.log(`Did not get an actor: ${reason}`)
}, {
address: "localhost",
port: 5678,
password: "abc123"
});