mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-09 06:33:05 -04:00
14 lines
No EOL
230 B
JavaScript
14 lines
No EOL
230 B
JavaScript
|
|
|
|
module.exports = {
|
|
name: 'test',
|
|
metadata: {
|
|
description: 'test',
|
|
examples: ['test'],
|
|
category: 'dev',
|
|
usage: 'test'
|
|
},
|
|
run: async (context) => {
|
|
return context.editOrReply('test successful.')
|
|
},
|
|
}; |