moved some frontends/* to new backends/; backends are threads running in background, no frontend
This commit is contained in:
parent
df3b22a308
commit
c0ddae7eb5
4 changed files with 16 additions and 9 deletions
13
lib/backends/xmpp.py
Normal file
13
lib/backends/xmpp.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
"""
|
||||
The Linspector XMPP Frontend...
|
||||
|
||||
Just for the fun in it... Linspector connects to a XMPP Server and are accepting commands from special users and can
|
||||
give back information. The Linspector admin client will then be any Jabber Client... ;)
|
||||
"""
|
||||
|
||||
from lib.backends.backend import Backend
|
||||
|
||||
|
||||
class XmmpBackend(Backend):
|
||||
def __init__(self, **kwargs):
|
||||
pass
|
||||
Loading…
Add table
Add a link
Reference in a new issue