UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge

13 lines (11 loc) 262 B
'use strict' module.exports = function (fastify, opts, next) { fastify .get('/', opts, function (req, reply) { reply.send({ hello: 'world' }) }) .post('/', opts, function (req, reply) { reply.send({ hello: 'world' }) }) next() }