Use import/export since we are using babel, removed unused imports

This commit is contained in:
Simon Schick
2015-11-28 17:57:22 +01:00
parent 47b6f6cadd
commit faa744b1e3
25 changed files with 151 additions and 185 deletions

View File

@@ -1,11 +1,9 @@
"use strict";
var ServerChannel = require("./ServerChannel.js");
import ServerChannel from "./ServerChannel";
class VoiceChannel extends ServerChannel{
export default class VoiceChannel extends ServerChannel{
constructor(data, client, server){
super(data, client, server);
}
}
module.exports = VoiceChannel;