mirror of
https://github.com/endofunky/sidetiq.git
synced 2022-11-09 13:53:30 -05:00
14 lines
169 B
Ruby
14 lines
169 B
Ruby
module Sidetiq
|
|
class << self
|
|
attr_writer :config
|
|
|
|
def configure
|
|
yield config
|
|
end
|
|
|
|
def config
|
|
@config ||= OpenStruct.new
|
|
end
|
|
end
|
|
end
|
|
|