2013-08-15 23:52:22 +02:00
|
|
|
"""
|
|
|
|
|
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... ;)
|
|
|
|
|
"""
|
|
|
|
|
|
2013-10-01 06:17:08 +02:00
|
|
|
from lib.backends.backend import Backend
|
2013-08-15 23:52:22 +02:00
|
|
|
|
|
|
|
|
|
2013-10-01 06:17:08 +02:00
|
|
|
class XmmpBackend(Backend):
|
2013-08-15 23:52:22 +02:00
|
|
|
def __init__(self, **kwargs):
|
|
|
|
|
pass
|