import { RouteDescription, RouteMethod } from '#api/RouteDescription.js'; /** * @type {RouteDescription} */ export const indexRoute = { path: '/', methods: { get: new RouteMethod({ description: 'Get the index page (empty)', method(req, res) { res.send( "Welcome to SafeNSound! If you're confused, please visit the app instead!" ); } }) } };