1
0
Fork 0
mirror of https://github.com/nishiki/botish.git synced 2024-10-27 07:33:16 +00:00
botish/modules/coucou.rb

10 lines
173 B
Ruby
Raw Normal View History

2017-04-18 20:38:56 +00:00
require 'botish/base'
2017-04-17 20:57:29 +00:00
2017-04-18 20:38:56 +00:00
module Botish
class Coucou < Base
def run(args)
send_msg("PRIVMSG #{args[:channel]} :#{args[:user]}: coucou mon petit")
2017-04-17 20:57:29 +00:00
end
end
end