datasquirel/index.js

30 lines
1.2 KiB
JavaScript
Raw Normal View History

2023-05-03 06:16:29 +00:00
/**
* ==============================================================================
* Imports
* ==============================================================================
*/
const get = require("./utils/get");
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/**
* ==============================================================================
* Main Function
* ==============================================================================
* @param {Object} mailObject - foundUser if any
*/
2023-05-03 06:25:12 +00:00
const datasquirel = {
2023-05-03 06:16:29 +00:00
get: get,
};
2023-05-03 06:25:12 +00:00
module.exports = datasquirel;
2023-05-03 06:16:29 +00:00
/** ********************************************** */
/** ********************************************** */
/** ********************************************** */