Current section
Files
Jump to
Current section
Files
priv/lib-src/cotonic/test/hello-world-worker.js
/**
* Test worker.
*/
"use strict";
importScripts("/src/cotonic.mqtt.js");
importScripts("/src/cotonic.worker.js");
self.connect("test-worker").then(function() {
self.postMessage("Hello world!");
})