Skip to content

Commit

Permalink
Remove unnecessary import and comment flagging it
Browse files Browse the repository at this point in the history
  • Loading branch information
cloud-spotter committed Oct 25, 2023
1 parent 8f06b48 commit 01382bd
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions api/routes/sessions.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ const router = express.Router();
const tokenChecker = require("../token_checker/token_checker");

const SessionsController = require("../controllers/sessions");
// const session = require("express-session");
// We think we don't need this line ^

router.post("/", tokenChecker, SessionsController.Create);
router.get("/", tokenChecker, SessionsController.Index);
Expand Down

0 comments on commit 01382bd

Please sign in to comment.