mirror of
https://github.com/certbot/certbot.git
synced 2026-03-27 12:53:05 -04:00
10 lines
319 B
Python
10 lines
319 B
Python
from trustify.client import logger
|
|
|
|
class Challenge(object):
|
|
def __init__(self, configurator):
|
|
self.config = configurator
|
|
def perform(self, quiet=True):
|
|
logger.error("Error - base class challenge.perform()")
|
|
def clean(self):
|
|
logger.error("Error - base class challenge.clean()")
|
|
|