datasquirel/index.js
2023-05-03 07:53:10 +01:00

34 lines
1.3 KiB
JavaScript

/**
* ==============================================================================
* Imports
* ==============================================================================
*/
const get = require("./utils/get");
const post = require("./utils/post");
const uploadImage = require("./utils/upload-image");
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/** ****************************************************************************** */
/**
* ==============================================================================
* Main Function
* ==============================================================================
* @param {Object} mailObject - foundUser if any
*/
const datasquirel = {
get: get,
post: post,
uploadImage: uploadImage,
};
module.exports = datasquirel;
/** ********************************************** */
/** ********************************************** */
/** ********************************************** */