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