Skip to content

Commit

Permalink
Merge pull request #55 from WaifuAPI/v4
Browse files Browse the repository at this point in the history
Hot fix added quote route [no version change required]
  • Loading branch information
kyrea authored Jan 11, 2024
2 parents c444570 + 0a7e798 commit dc02dc4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/routes/v4/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';

/**
Expand Down

0 comments on commit dc02dc4

Please sign in to comment.