From b241098da4615e1fbacb1b5027cd9393a287991d Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Thu, 15 Aug 2013 23:52:22 +0200 Subject: [PATCH] added xmpp frontend... may this will be fun at some time... --- lib/frontends/xmpp.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lib/frontends/xmpp.py 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