1
0
forked from MTSR/mapserver
mapserver/public/js/stats.js
2021-04-12 13:03:10 +02:00

10 lines
244 B
JavaScript

import WorldStats from './components/WorldStats.js';
import wsChannel from './WebSocketChannel.js';
wsChannel.connect();
wsChannel.addListener("minetest-info", function(info){
m.render(document.getElementById("app"), WorldStats(info));
});