summaryrefslogtreecommitdiff
path: root/WebInterface/src/js/modules/networking/commands/login/createServer.js
blob: 78b2a1b02382f21a2918d957a25a168e264e39f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import Command from '../_command';

/**
 * Handles creation of Servers
 */
export default class CreateServer extends Command {
  /**
   * Registers interface for communication with other objects
   * @param {Interface} iface
   */
  constructor(iface) {
    super(iface);
    this.registerPublic('createServer', 'createServer');
    this.refreshing = false;
  }

  /**
   * TODO:
   */
  createServer() {

  }
}