"use strict";
const defaultCommand = require('./default-command');
const commands = {
};
for (let [key, value] of Object.entries(defaultCommand)) {
value.forEach(function(element) {
commands[element.toLowerCase()] = key.toLowerCase();
})
}
module.exports = commands;