9 lines
111 B
Ruby
9 lines
111 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
require_relative 'bots'
|
|
|
|
EM.run do
|
|
Ebooks::Bot.all.each do |bot|
|
|
bot.start
|
|
end
|
|
end
|