mirror of
https://github.com/nishiki/botish.git
synced 2024-11-23 08:07:52 +00:00
11 lines
210 B
Ruby
Executable file
11 lines
210 B
Ruby
Executable file
#!/usr/bin/ruby
|
|
|
|
$LOAD_PATH << File.expand_path('../../lib', __FILE__)
|
|
|
|
require 'botish'
|
|
|
|
Dir["#{File.expand_path('../../modules', __FILE__)}/*"].each do |f|
|
|
require_relative f
|
|
end
|
|
|
|
Botish::Botish.new.listen
|