diff options
Diffstat (limited to 'echo.rb')
-rw-r--r-- | echo.rb | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/echo.rb b/echo.rb deleted file mode 100644 index 34b9770..0000000 --- a/echo.rb +++ /dev/null @@ -1,15 +0,0 @@ -require_relative 'module' - -module Dinobot - class Echo < Module - def initialize - super - - @commands << :echo - end - - def echo(user, channel, argument) - [[:say, channel, argument]] - end - end -end |