Skip to content

Commit

Permalink
chore:minor issues
Browse files Browse the repository at this point in the history
  • Loading branch information
SySagar committed Oct 20, 2023
1 parent 0dcbed7 commit 55f7fff
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 1 addition & 3 deletions src/app/classic/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
export const classicRouter =(req,res)=> {
res.send("🚀 Server is up and running!")
}
export { default as classicRouter } from './routes.js'
9 changes: 9 additions & 0 deletions src/app/classic/routes.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { Router } from "express";

const router = Router()

router.get('/', (req,res)=>{
res.send("🚀 Server is up and running!")
})

export default router;

0 comments on commit 55f7fff

Please sign in to comment.