DiscordTickets/src/routes/index.js

6 lines
153 B
JavaScript
Raw Normal View History

2022-05-06 23:17:53 +03:00
module.exports.get = () => ({
2022-05-06 02:01:19 +03:00
handler: (req, res) => {
const { client } = res.context.config;
return `Hello, I am ${client.user.username}!`;
},
2022-05-06 23:17:53 +03:00
});