Skip to content

Commit

Permalink
Merge pull request #59 from KOSASIH/deepsource-transform-d2e6cc26
Browse files Browse the repository at this point in the history
style: format code with Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf
  • Loading branch information
KOSASIH authored May 10, 2024
2 parents 953a7cb + 80b0ed9 commit 3260aa3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/controllers/index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
const express = require("express");
const router = express.Router();
const express = require('express')
const router = express.Router()

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

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

module.exports = router;
module.exports = router

0 comments on commit 3260aa3

Please sign in to comment.