1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-18 00:02:25 +03:00
Files
certbot/letsencrypt/client/validator.py
2014-11-22 00:22:09 +01:00

15 lines
327 B
Python

class Validator(object):
"""Configuration validator."""
def redirect(self, name):
raise NotImplementedError()
def ocsp_stapling(self, name):
raise NotImplementedError()
def https(self, names):
raise NotImplementedError()
def hsts(self, name):
raise NotImplementedError()