Isaac 5f77b28012
fix(http): fastify dependencies (closes #461, #491) (#520)
* 🚨 **[WIP]** fix: fastify dependencies

* update & fix http stuff
2024-01-21 02:19:26 +00:00

8 lines
176 B
JavaScript

module.exports.get = () => ({
handler: async req => {
/** @type {import("client")} */
const client = req.routeOptions.config.client;
return client.i18n.locales;
},
});