Skip to content

Commit

Permalink
Fix import statements in app.js
Browse files Browse the repository at this point in the history
  • Loading branch information
kinoarizu committed Jan 2, 2025
1 parent e4ef04e commit 804e9ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion history-service/app.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const Hapi = require("@hapi/hapi");
const historyRoutes = require("./routes/history");
// const { jwtScheme, unauthorizedPreResponseCallback } = require("./config/auth");
const { jwtScheme, unauthorizedPreResponseCallback } = require("./config/auth");

require("dotenv").config();
const PORT = process.env.PORT || 3004;
Expand Down
2 changes: 1 addition & 1 deletion user-auth-service/app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const Hapi = require("@hapi/hapi");
const userRoutes = require("./routes/user");
const authRoutes = require("./routes/auth");
// const { jwtScheme, unauthorizedPreResponseCallback } = require("./config/auth");
const { jwtScheme, unauthorizedPreResponseCallback } = require("./config/auth");

require("dotenv").config();

Expand Down

0 comments on commit 804e9ac

Please sign in to comment.