1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/lib/sidekiq/server.rb

16 lines
195 B
Ruby
Raw Normal View History

2012-01-16 19:14:47 -05:00
module Sidekiq
##
# Represents a connection to our MQ server.
#
class Server
2012-01-16 19:18:36 -05:00
def initialize(location, options={})
p [location, options]
end
def run
end
2012-01-16 19:14:47 -05:00
end
end