summary refs log tree commit diff
path: root/src/api/routes/indexRoute.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/routes/indexRoute.js')
-rw-r--r--src/api/routes/indexRoute.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/api/routes/indexRoute.js b/src/api/routes/indexRoute.js
new file mode 100644

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