From cafcffbb7412d8a80200d288d6819bd4a6779399 Mon Sep 17 00:00:00 2001 From: Santhosh Thottingal Date: Thu, 26 Mar 2009 22:42:30 +0530 Subject: Adding plugin manager --- silpa/common/silpamodule.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 silpa/common/silpamodule.py (limited to 'silpa/common/silpamodule.py') diff --git a/silpa/common/silpamodule.py b/silpa/common/silpamodule.py new file mode 100644 index 0000000..8a35f2d --- /dev/null +++ b/silpa/common/silpamodule.py @@ -0,0 +1,14 @@ +#! /usr/bin/env python +# -*- coding: utf-8 -*- +class SilpaModule: + def __init__(self): + self.response = None + + def get_errormessage(self): + return None + def get_successmessage(self): + return None + def get_module_name(self): + return "Untitled Silpa Module" + def get_info(self): + return "Module description" -- cgit