Skip to content

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
TuuKeZu committed Aug 16, 2024
1 parent 9e43ece commit 503c8c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const express = require('express');
const cors = require('cors');
const { user, password, host, authServer } = require('../secret.json');
const { user, password, host, authServer } = require('./secret.json');
const url = `mongodb://${user}:${password}@${host}:27017/?authMechanism=DEFAULT&authSource=${authServer}`;

const sessions = require('./routers/sessions');
Expand Down

0 comments on commit 503c8c8

Please sign in to comment.