Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: yukioz <[email protected]>
  • Loading branch information
yukioz committed Aug 2, 2024
1 parent 222491f commit 0969810
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/routes.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const express = require("express");
const routes = express.Router();
const NewController = require("./Controllers/newController");
const supplierFormController = require("./Controllers/supplierFormController");

// Private
// routes.get('/finance', tokenValidation, ???.getUsers);
Expand All @@ -18,7 +18,7 @@ routes.patch(
);

// Public
routes.post("/finance/create", NewController.createNew);
routes.get("/finance", NewController.getNews);
// routes.post("/finance/create", NewController.createNew);
// routes.get("/finance", NewController.getNews);

module.exports = routes;

0 comments on commit 0969810

Please sign in to comment.