hardlounge/client/js/constants.js

40 lines
409 B
JavaScript
Raw Normal View History

2017-04-18 03:42:26 -04:00
"use strict";
const commands = [
"/away",
"/back",
2017-04-24 06:40:53 -04:00
"/ban",
2017-04-18 03:42:26 -04:00
"/banlist",
"/close",
"/connect",
"/deop",
"/devoice",
"/disconnect",
"/invite",
"/join",
"/kick",
"/leave",
"/me",
"/mode",
"/msg",
"/nick",
"/notice",
"/op",
"/part",
"/query",
"/quit",
"/raw",
"/say",
"/send",
"/server",
"/slap",
"/topic",
2017-04-24 06:40:53 -04:00
"/unban",
2017-04-18 03:42:26 -04:00
"/voice",
"/whois"
];
module.exports = {
commands: commands
};