mirror of
https://github.com/chatmail/core.git
synced 2026-04-18 22:16:30 +03:00
12 lines
216 B
JavaScript
12 lines
216 B
JavaScript
const {default:dc} = require("./dist")
|
|
|
|
const ac = new dc("testdtrdtrh")
|
|
|
|
ac.startJSONRPCHandler(console.log)
|
|
|
|
setTimeout(()=>{
|
|
ac.close() // This segfaults -> TODO Findout why?
|
|
|
|
console.log("still living")
|
|
}, 1000)
|