From 0a7e79875759d3d46d1144637928431f7c34b930 Mon Sep 17 00:00:00 2001 From: kyrea Date: Thu, 11 Jan 2024 06:25:37 +0530 Subject: [PATCH] Hot fix added quote route [no version change required] --- src/routes/v4/index.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/routes/v4/index.js b/src/routes/v4/index.js index 15865da..5bec39d 100644 --- a/src/routes/v4/index.js +++ b/src/routes/v4/index.js @@ -72,6 +72,22 @@ import passwordRoutes from './textUtilities/password.js'; */ router.use('/password', passwordRoutes); +import quoteRoutes from './textUtilities/quote.js'; + +/** + * @api {use} v4/quote Use Quote Routes + * @apiDescription Mount the quote-related routes for handling text utilities. + * @apiName UseQuoteRoutes + * @apiGroup Routes + * + * @apiSuccess {Object} routes Quote-related routes mounted on the parent router. + * + * @function createQuoteRoutes + * @description Creates and returns a set of routes for handling text utilities related to quotes. + * @returns {Object} Quote-related routes. + */ +router.use('/quote', quoteRoutes); + import uvuifyRoutes from './textUtilities/uvuify.js'; /**