mirror of
https://github.com/certbot/certbot.git
synced 2026-06-13 18:50:20 -04:00
Clean validator module.
This commit is contained in:
parent
9cdb7dbae2
commit
123e64ff03
1 changed files with 9 additions and 7 deletions
|
|
@ -1,12 +1,14 @@
|
|||
class Validator(object):
|
||||
"""
|
||||
This Class will contain an API to validate configurations.
|
||||
"""
|
||||
"""Configuration validator."""
|
||||
|
||||
def redirect(self, name):
|
||||
return
|
||||
raise NotImplementedError()
|
||||
|
||||
def ocsp_stapling(self, name):
|
||||
return
|
||||
raise NotImplementedError()
|
||||
|
||||
def https(self, names):
|
||||
return
|
||||
raise NotImplementedError()
|
||||
|
||||
def hsts(self, name):
|
||||
return
|
||||
raise NotImplementedError()
|
||||
|
|
|
|||
Loading…
Reference in a new issue