Skip to content

Commit

Permalink
Merge pull request #55 from KOSASIH/deepsource-transform-fcaaac5d
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 be5b0d9 + 89bf698 commit f0b1218
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/routes/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
const express = require("express");
const router = express.Router();
const express = require('express')
const router = express.Router()

router.get("/", (req, res) => {
res.json({ message: "Welcome to the PI Nexus Autonomous Banking Network!" });
});
router.get('/', (req, res) => {
res.json({ message: 'Welcome to the PI Nexus Autonomous Banking Network!' })
})

module.exports = router;
module.exports = router

0 comments on commit f0b1218

Please sign in to comment.