diff --git a/lib/frontends/xmpp.py b/lib/frontends/xmpp.py new file mode 100644 index 0000000..6b84397 --- /dev/null +++ b/lib/frontends/xmpp.py @@ -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.frontends.frontend import Frontend + + +class XmmpFrontend(Frontend): + def __init__(self, **kwargs): + pass \ No newline at end of file