Skip to content

Commit

Permalink
Create index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored May 10, 2024
1 parent 2c80799 commit 0f8e78e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/controllers/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const express = require("express");
const router = express.Router();

const AccountsController = require("./accounts");
const TransfersController = require("./transfers");

router.use("/accounts", AccountsController);
router.use("/transfers", TransfersController);

module.exports = router;

0 comments on commit 0f8e78e

Please sign in to comment.