diff --git a/lib/backends/__init__.py b/lib/backends/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/lib/backends/backend.py b/lib/backends/backend.py new file mode 100644 index 0000000..507331c --- /dev/null +++ b/lib/backends/backend.py @@ -0,0 +1,11 @@ +""" +Backends can be a http service or xml-rpc service; let's say background threads providing an interface somewhere. They +should run as background threads. + +Backends are absolutely no requirement for running Linspector. +""" + + +class Backend(): + def __init__(self, **kwargs): + return \ No newline at end of file