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