hardlounge/server/plugins/inputs/raw.ts

17 lines
286 B
TypeScript
Raw Normal View History

import {PluginInputHandler} from "./index";
const commands = ["raw", "send", "quote"];
const input: PluginInputHandler = function ({irc}, chan, cmd, args) {
if (args.length !== 0) {
irc.connection.write(args.join(" "));
}
return true;
};
export default {
commands,
input,
};