2025-01-27 23:14:49 +00:00

10 lines
175 B
TypeScript

import bot from "@bot/bot";
const get = async (request, response) => {
response.render("home", {
title: "Dashboard - Relay"
});
};
module.exports = { get };