Initial commit

This commit is contained in:
2023-10-05 11:29:24 -06:00
commit 55f1c6e091
15 changed files with 370 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
"use strict";
const apiConfig = require( process.env.ROOT_PATH + process.env.API_CONFIG );
const getUsers = async(req, res) => {
console.log( req.params );
res.send({ user : "hello world!" });
};
const getUserData = async(req, res) => {
console.log( req.params );
res.send({ user : "hello world!" });
};
const getProfileData = async(req, res) => {
console.log( req.params );
res.send({ user : "hello world!" });
};
module.exports = { getUsers , getUserData , getProfileData};