This commit is contained in:
Christopher Cookman 2024-08-18 01:34:15 -06:00
parent afb6b41abb
commit db5c8ce838
Signed by: ChrisChrome
GPG key ID: A023A26E42C33A42

View file

@ -36,6 +36,12 @@ const client = new Discord.Client({
app.use(express.json());
app.use((req, res, next) => {
// Log all requests with IP address
console.log(`${colors.cyan("[EXPRESS]")} ${req.ip} ${req.method} ${req.url}`);
next();
});
// Vars
var handledTransactions = [];