codevise/cert_watch

View on GitHub
lib/cert_watch/client.rb

Summary

Maintainability
A
0 mins
Test Coverage
module CertWatch
  class Client
    def renew(_domain)
      fail(NotImplementedError)
    end

    def read_outputs(_domain)
      fail(NotImplementedError)
    end
  end
end