Add validator class to be used after configuration to guarantee correctness

This commit is contained in:
James Kasten 2014-11-11 11:52:53 -08:00
parent 4af311894b
commit f72836ba14

View 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