1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-26 07:41:33 +03:00
Files
certbot/letsencrypt/client/challenge.py
2014-11-22 00:22:09 +01:00

14 lines
301 B
Python

class Challenge(object):
def __init__(self, configurator):
self.config = configurator
def perform(self, quiet=True):
raise NotImplementedError()
def generate_response(self):
raise NotImplementedError()
def cleanup(self):
raise NotImplementedError()