Testing files

This commit is contained in:
2023-06-13 19:27:17 +02:00
parent f73304866e
commit 159724888f
2 changed files with 9 additions and 0 deletions

View File

@@ -22,5 +22,9 @@ async function getplayer(uuid) {
}
}
getuuid("smhtaken").then(uuid => {
console.log(uuid)
})
module.exports = getuuid
module.exports = getplayer

5
utils/test.js Normal file
View File

@@ -0,0 +1,5 @@
const getuuid = require('./functions.js');
getuuid("smhtaken").then(uuid => {
console.log(uuid)
})