mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2025-04-05 12:51:42 +03:00
8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
module.exports.get = () => ({
|
|
handler: async req => {
|
|
/** @type {import("client")} */
|
|
const client = req.routeOptions.config.client;
|
|
return client.i18n.locales;
|
|
},
|
|
});
|