brokers.js 163 B

1234567891011
  1. 'use strict'
  2. module.exports = function (fastify, opts, next) {
  3. fastify.get('/brokers', function (request, reply) {
  4. reply.send([
  5. ]);
  6. });
  7. next();
  8. }