mirror of
https://github.com/certbot/certbot.git
synced 2026-02-17 09:38:06 -05:00
14 lines
327 B
Python
14 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()
|