feat: add custom route to export data for LLM
Déploiement API PROD / build (push) Successful in 2m8s
Déploiement API PROD / deploy (push) Successful in 58s

This commit is contained in:
2026-06-11 19:07:18 +04:00
parent b565224fcd
commit a000af5c8b
4 changed files with 215 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
'use strict';
module.exports = {
routes: [
{
method: 'GET',
path: '/paroles/export',
handler: 'parole.export',
config: {
policies: [],
middlewares: [],
},
},
],
};