summaryrefslogtreecommitdiffstats
path: root/modules/test.py
blob: 55265a3b598e8f6d01c11de39c99080f6d52a8ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/python

from modules import func_module

class Test(func_module.FuncModule):
    version = "11.11.11"
    api_version = "0.0.1"
    description = "Just a very simple example module"
    def __init__(self):
        self.methods = {
            "add": self.add
        }
        func_module.FuncModule.__init__(self)

    def add(self, numb1, numb2):
        return numb1 + numb2

methods = Test()
register_rpc = methods.register_rpc