mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
Add validator class to be used after configuration to guarantee correctness
This commit is contained in:
parent
4af311894b
commit
f72836ba14
1 changed files with 12 additions and 0 deletions
12
trustify/client/validator.py
Normal file
12
trustify/client/validator.py
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
class Validator(object):
|
||||
"""
|
||||
This Class will contain an API to validate configurations.
|
||||
"""
|
||||
def redirect(name):
|
||||
return
|
||||
def ocsp_stapling(name):
|
||||
return
|
||||
def https(names):
|
||||
return
|
||||
def hsts(name):
|
||||
return
|
||||
Loading…
Reference in a new issue