const path = require("path"); const db = require(path.join(__dirname, "../models/logging")); async function audit(type, message, cmd) { const audit = new db(); audit.ranBy = message.member.user.username; audit.name = cmd; audit.type = type; audit.channel = message.channel.name; audit.save() } module.exports = audit;