moved some frontends/* to new backends/; backends are threads running in background, no frontend

This commit is contained in:
Johannes Findeisen 2013-10-01 06:17:08 +02:00
commit 2388a945a4
4 changed files with 16 additions and 9 deletions

13
lib/backends/https.py Normal file
View file

@ -0,0 +1,13 @@
"""
A HTTPS backend 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...)
"""
from lib.backends.backend import Backend
class HttpsBackend(Backend):
def __init__(self, **kwargs):
return