topics.js 250 B

1234567891011
  1. 'use strict'
  2. const topics = require('../mocks/topics');
  3. module.exports = function (fastify, opts, next) {
  4. fastify.get('/clusters/:clusterId/topics', function (request, reply) {
  5. reply.send(topics[request.params.clusterId]);
  6. });
  7. next();
  8. }