Current section

Files

Jump to
zotonic_mod_base priv lib-src cotonic test hello-world-worker.js
Raw

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!");
})