We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7874d4 commit 7207af2Copy full SHA for 7207af2
src/queries/customers_basic.js
@@ -1,9 +1,9 @@
1
-const db = require("./db.js");
+const db = require("../db.js");
2
const Customer = db.customers;
3
4
async function asyncFunction() {
5
const customers = await Customer.findAll();
6
console.log(JSON.stringify(customers));
7
}
8
9
-asyncFunction();
+asyncFunction();
0 commit comments