Added new files

This commit is contained in:
2023-04-17 11:11:03 +05:30
parent 8e098d1add
commit d37e6fad1a
377 changed files with 65278 additions and 1414 deletions
+19
View File
@@ -0,0 +1,19 @@
let SERVERNAME = 'https://anwi.bizgaze.app';
const STAT = '05b2f2ca510344968c65e1ebf49a5595';
async function postStatAPIService(url,data={}){
let config = {
url,
method:'get',
data:data,
headers: {
'Authorization': `stat ${STAT}`,
'Content-Type': 'application/json'
},
}
let response = await axios(config);
return response;
}
+8
View File
@@ -0,0 +1,8 @@
function authFunction(){
console.log("hello");
postAPIService()
}
authFunction();