summary refs log tree commit diff
path: root/src/api/routes/indexRoute.js
blob: 368589393fd37abb7c940aebf787a43ddf18999f (plain) (blame)
1
2
3
4
5
6
export const indexRoute = {
  route: "/",
  onGet(req, res) {
    res.send("What art thou doing here???");
  },
};