10 lines
235 B
JavaScript
10 lines
235 B
JavaScript
|
function test (bot, options, context) {
|
||
|
const randomstring = require("randomstring")
|
||
|
bot.test = {
|
||
|
amonger () {
|
||
|
bot.tellraw('Hello World!')
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = test
|