link-shortner/index.js
2025-05-30 11:29:31 +00:00

17 lines
322 B
JavaScript

const {
createShortUrl,
getOriginalUrl,
startScheduler,
getAllData,
getPaginatedData
} = require("./utils/helperFunctions");
module.exports = {
getShortenUrlCode: createShortUrl,
getOriginalUrlByShortCode: getOriginalUrl,
deleteExpiredShortUrlsCodes: startScheduler,
getAllData,
getPaginatedData,
};