aboutsummaryrefslogtreecommitdiff
path: root/echo.rb
diff options
context:
space:
mode:
Diffstat (limited to 'echo.rb')
-rw-r--r--echo.rb15
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