mirror of
https://github.com/optim-enterprises-bv/control-pane.git
synced 2025-10-30 01:22:24 +00:00
12 lines
195 B
JavaScript
12 lines
195 B
JavaScript
define(
|
|
"main",
|
|
[
|
|
"MessageList"
|
|
],
|
|
function(MessageList) {
|
|
var ws = new WebSocket("ws://samson.bsdstore.ru:8082/entry");
|
|
var list = new MessageList(ws);
|
|
ko.applyBindings(list);
|
|
}
|
|
);
|