1
0
mirror of https://github.com/haiwen/libsearpc.git synced 2025-04-30 11:33:20 +00:00
libsearpc/tests/rpc_table.py
2016-07-28 17:06:27 +08:00

13 lines
263 B
Python

"""
Define RPC functions needed to generate
"""
# [ <ret-type>, [<arg_types>] ]
func_table = [
[ "string", ["string", "int"] ],
[ "object", ["string"] ],
[ "objlist", ["string", "int"] ],
[ "json", ["string", "int"] ],
[ "json", ["json"]],
]