Sha256: f8a959e992c14f7d4dad25c55ae70f1018cf6d4d25817b65d5569c2d10f91dd0
Contents?: true
Size: 369 Bytes
Versions: 1
Compression:
Stored size: 369 Bytes
Contents
require 'mastodon_healthchecker/results/network_inspection.rb' module MastodonHealthchecker module AvailabilityInspector def self.call(host) NetworkInspectionResult.new(v4: inspect_v4, v6: inspect_v6) end private def self.inspect_v4 # TODO: Implement here end def self.inspect_v6 # TODO: Implement here end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mastodon_healthchecker-0.1.0.pre | lib/mastodon_healthchecker/inspectors/availability.rb |