UNPKG

forest-express

Version:

Official package for all Forest Express Lianas

11 lines (10 loc) 302 B
"use strict"; var cors = require('cors'); var path = require('../services/path'); module.exports = function HealthCheck(app, opts) { this.perform = function () { app.get(path.generate('healthcheck', opts), cors(), function (request, response) { response.status(200).send(); }); }; };