mirror of
https://github.com/certbot/certbot.git
synced 2026-01-18 00:02:25 +03:00
15 lines
327 B
Python
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()
|