nsca-client/lib/nsca/client/service.rb
2012-12-07 16:40:40 -02:00

12 lines
216 B
Ruby

module NSCA
module Client
class Service
attr_accessor :name, :host
def initialize(options)
@name = options[:name]
@host = options[:host] || Host.current
end
end
end
end