mirror of
https://github.com/thewesker/twitter_ebooks.git
synced 2025-12-20 12:21:11 -05:00
10 lines
111 B
Ruby
10 lines
111 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
require_relative 'bots'
|
|
|
|
EM.run do
|
|
Ebooks::Bot.all.each do |bot|
|
|
bot.start
|
|
end
|
|
end
|