mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
14 lines
301 B
Python
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()
|