2013-08-14 20:36:35 +02:00
|
|
|
"""
|
2013-10-01 06:17:08 +02:00
|
|
|
A HTTPS backend to the current Linspector instance.
|
2013-08-13 23:10:06 +02:00
|
|
|
|
|
|
|
|
A Webserver listening for requests to give information about the internal state of linspector.
|
|
|
|
|
(maybe providing a JSON API to the instance too...)
|
2013-08-14 20:36:35 +02:00
|
|
|
"""
|
|
|
|
|
|
2013-10-01 06:17:08 +02:00
|
|
|
from lib.backends.backend import Backend
|
2013-08-14 20:36:35 +02:00
|
|
|
|
|
|
|
|
|
2013-10-01 06:17:08 +02:00
|
|
|
class HttpsBackend(Backend):
|
2013-08-14 20:36:35 +02:00
|
|
|
def __init__(self, **kwargs):
|
|
|
|
|
return
|