frontend: Système d'onglets pour /functions/slug

This commit is contained in:
Divlo
2020-03-23 21:22:41 +01:00
parent 0f8c1d3569
commit 53330095be
9 changed files with 185 additions and 20 deletions

View File

@ -0,0 +1,6 @@
function redirect (ctx, path) {
ctx.res.writeHead(302, { Location: path });
ctx.res.end();
}
module.exports = redirect;