Merge branch 'main' of gitlab.com:illegitimate/illegitimate-bot

This commit is contained in:
2023-06-14 19:05:47 +02:00
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 = getuuid
module.exports = getplayer 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)
})