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
2017-04-17 22:57:29 +02:00

9 lines
202 B
Ruby

module Botish
class Coucou
def initialize(connection, args)
@connection = connection
@connection.puts("PRIVMSG #{args[:channel]} :#{args[:user]}: coucou mon petit")
end
end
end