owncast/webroot/js/main.js
Gabe Kangas cc48f86b85 WIP
2020-05-23 17:57:49 -07:00

12 lines
186 B
JavaScript

define(
"main",
[
"MessageList"
],
function(MessageList) {
var ws = new WebSocket("ws://localhost:8080/entry");
var list = new MessageList(ws);
ko.applyBindings(list);
}
);