fixed user importing error

This commit is contained in:
deadvey 2025-07-13 02:49:55 +01:00
parent 3efe4b7836
commit 23685d02c0
2 changed files with 3 additions and 2 deletions

3
app.js
View File

@ -22,7 +22,8 @@ let comments
let config
try {
// We're going to try and import the modules, users = require('./users.js');
// We're going to try and import the modules,
users = require('./users.js');
posts = require('./posts.js');
comments = require('./comments.js');
config = require('./config.js');

View File

@ -1 +1 @@
259
260