UNPKG

forest-express

Version:

Official package for all Forest Express Lianas

10 lines (9 loc) 256 B
"use strict"; var path = require('../services/path'); module.exports = function Forest(app, options) { this.perform = function () { app.get(path.generate('', options), function (request, response) { response.status(204).send(); }); }; };