From ec31ec9f158d03e27fa61ff800ab5790390e04de Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Tue, 1 Oct 2013 06:51:54 +0200 Subject: [PATCH] added interface class to core for backend/frontend commnication to core --- lib/core/interface.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lib/core/interface.py diff --git a/lib/core/interface.py b/lib/core/interface.py new file mode 100644 index 0000000..26a7d88 --- /dev/null +++ b/lib/core/interface.py @@ -0,0 +1,8 @@ +""" +The interface class should contain all stuff for frontend/backend communication to the Linspector core. +""" + + +class Interface(): + def __init__(self): + pass