summary refs log tree commit diff
path: root/src/api/routes/indexRoute.js
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-05-29 22:48:16 +0200
committerRory& <root@rory.gay>2025-05-29 22:48:48 +0200
commit9d33b2fe6b3fbea60d981d9f4ed24cf82b05a7af (patch)
treeee44d3b3df88febdce52efe436f4582820fb6471 /src/api/routes/indexRoute.js
parentGet database working (diff)
downloadnodejs-final-assignment-9d33b2fe6b3fbea60d981d9f4ed24cf82b05a7af.tar.xz
Prettier config
Diffstat (limited to 'src/api/routes/indexRoute.js')
-rw-r--r--src/api/routes/indexRoute.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/api/routes/indexRoute.js b/src/api/routes/indexRoute.js

index 3685893..3b9eaef 100644 --- a/src/api/routes/indexRoute.js +++ b/src/api/routes/indexRoute.js
@@ -1,6 +1,6 @@ export const indexRoute = { - route: "/", - onGet(req, res) { - res.send("What art thou doing here???"); - }, + route: '/', + onGet(req, res) { + res.send('What art thou doing here???'); + } };