1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
424 B

var path = require("path");
exports.Config = {
version: "0.0.1",
responderDir: "responders",
color: "green",
colors: {
commands: "red",
modules: "green",
configs: "magenta",
success: "green",
failure: "red"
},
init: function(self)
{
if (this.debug === true) {
}
/*
if (("fields" in self.ldap) === true) {
self.ldap.users.replace(/(\?\*\?)/, self.ldap.fields.join(","));
}*/
}
};