Sha256: 17b9ad4327f67bf97522edc68e0560e603f83499e06394bdebe224bd0e2056dd
Contents?: true
Size: 286 Bytes
Versions: 5
Compression:
Stored size: 286 Bytes
Contents
# frozen_string_literal: true require "redfish_client/connector" require "redfish_client/root" require "redfish_client/version" module RedfishClient def self.new(url, prefix: "/redfish/v1", verify: true) con = Connector.new(url, verify) Root.new(con, oid: prefix) end end
Version data entries
5 entries across 5 versions & 1 rubygems