Created
April 18, 2015 05:21
-
-
Save t-oginogin/ab955651debb13563911 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Ruboty | |
module Handlers | |
class OginOk < Base | |
on( | |
/オッケーですか?/, | |
name: "ok", | |
description: "Return オッケーです!" | |
) | |
def ok(message) | |
message.reply("オッケーです!") | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment