attempted to streamline by breaking functions into separate source

This commit is contained in:
2026-04-07 08:45:26 +02:00
parent 83c204670d
commit 2c596fe23f
4 changed files with 29 additions and 26 deletions
+9
View File
@@ -0,0 +1,9 @@
module.exports =
function ping(interface, args, type){
if (type = 'legacy'){
// type = legacy
interface.reply('pang!')
} else {
interface.reply('pong!')
}
}