mirror of
https://github.com/certbot/certbot.git
synced 2026-07-27 00:00:44 +02:00
Clean validator module.
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user