Add initial WebSocket client app

This commit is contained in:
Rafostar
2020-12-15 18:20:48 +01:00
parent 8564cc9617
commit 5231a1f225
4 changed files with 123 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
const { GObject, Gtk } = imports.gi;
const { PlayerRemote } = imports.clapper_src.playerRemote;
var WidgetRemote = GObject.registerClass(
class ClapperWidgetRemote extends Gtk.Grid
{
_init(opts)
{
super._init();
this.player = new PlayerRemote();
}
});