UNPKG

redis-smq-rest-api

Version:

REST API for RedisSMQ: OpenAPI 3 schema and Swagger UI for managing queues, messages, and consumers.

14 lines 486 B
import { EControllerRequestMethod } from '../../../lib/controller/types/index.js'; import { getConfigurationController } from '../../../controllers/configuration/getConfigurationController.js'; export const configuration = { path: 'config', tags: ['Configuration'], resource: [ { handler: getConfigurationController, method: EControllerRequestMethod.GET, payload: [], }, ], }; //# sourceMappingURL=configuration.js.map