UNPKG
nobot
Version:
latest (0.1.1)
0.1.1
0.1.0
A simple bot for HipChat
oliviert/nobot
nobot
/
plugin.js
13 lines
(10 loc)
•
210 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
function
Plugin
(
bot
) {
this
.
bot
= bot; }
Plugin
.
prototype
.
respond_to_msg
=
function
(
msg
) {
return
false
; }
Plugin
.
prototype
.
response_text
=
function
(
recipient, msg
) {
return
; }
module
.
exports
=
Plugin
;