summaryrefslogtreecommitdiff
path: root/WebInterface/NodeJSServer/src/js/modules/networking/commands/playCmds.js
diff options
context:
space:
mode:
authorDennis Kobert <d-kobert@web.de>2019-06-11 23:53:30 +0200
committerDennis Kobert <d-kobert@web.de>2019-06-11 23:53:30 +0200
commit3a3d0fc3d4733f8908e23a03f860d76340479ec4 (patch)
treecf4b82f61d01d2a24836e9820d73972436847982 /WebInterface/NodeJSServer/src/js/modules/networking/commands/playCmds.js
parentc28c9fafa2c74b101f7ce777aac722dcdeecefc6 (diff)
Reorganize Project structure
Diffstat (limited to 'WebInterface/NodeJSServer/src/js/modules/networking/commands/playCmds.js')
-rw-r--r--WebInterface/NodeJSServer/src/js/modules/networking/commands/playCmds.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/WebInterface/NodeJSServer/src/js/modules/networking/commands/playCmds.js b/WebInterface/NodeJSServer/src/js/modules/networking/commands/playCmds.js
deleted file mode 100644
index 94cd6ba..0000000
--- a/WebInterface/NodeJSServer/src/js/modules/networking/commands/playCmds.js
+++ /dev/null
@@ -1,31 +0,0 @@
-// import ListServers from './login/listServers';
-
-/**
- * Manages commands related to the login page
- */
-export default class LoginCommands {
- /**
- * Initializes the login commands
- * @param {Interface} iface Interface for inter-object communication
- */
- constructor(iface) {
- this.iface = iface;
- this.cmds = [];
- }
-
- /**
- * Registers all the available commands
- */
- registerCommands() {
- // this.cmds.push(new ListServers(iface));
- }
-
- /**
- * Destroys all attached commands
- */
- destroy() {
- for (let cmd of this.cmds) {
- cmd.destroy();
- }
- }
-}