moved some frontends/* to new backends/; backends are threads running in background, no frontend
This commit is contained in:
parent
fc33883fd9
commit
2388a945a4
4 changed files with 16 additions and 9 deletions
13
lib/backends/https.py
Normal file
13
lib/backends/https.py
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue