blob: fda9e0580bd8c56b55ad5abb009f9c0e8cdc1c12 (
plain)
1
2
3
4
5
6
7
8
9
10
|
const common = require("./common.js")
module.exports = {
op: common.listChangeCommand("oped", "operators", true),
deop: common.listChangeCommand("oped", "operators", false),
oplist: common.listCommand("operators", "operators"),
ignore: common.listChangeCommand("ignored", "ignored", true),
unignore: common.listChangeCommand("ignored", "ignored", false),
ignorelist: common.listCommand("ignored users", "ignored"),
}
|