lorenzocestaro/inspirobot-slack

View on GitHub
src/controllers/home.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
const get = async ({ response }) => {
    response.statusCode = 308;
    response.setHeader('Location', 'https://github.com/lorenzocestaro/inspirobot-slack');
};

module.exports = {
    get,
};