2013-08-14 20:36:35 +02:00
|
|
|
"""
|
2013-08-13 23:10:06 +02:00
|
|
|
A HTTPS frontend to the current Linspector instance.
|
|
|
|
|
|
|
|
|
|
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
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from lib.frontends.frontend import Frontend
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class HttpsFrontend(Frontend):
|
|
|
|
|
def __init__(self, **kwargs):
|
|
|
|
|
return
|