1
0
mirror of https://github.com/haiwen/libsearpc.git synced 2025-05-02 20:36:17 +00:00
libsearpc/tests/rpc_table.py

13 lines
263 B
Python
Raw Permalink Normal View History

2012-06-23 03:43:42 +00:00
"""
Define RPC functions needed to generate
"""
# [ <ret-type>, [<arg_types>] ]
func_table = [
[ "string", ["string", "int"] ],
[ "object", ["string"] ],
[ "objlist", ["string", "int"] ],
2016-06-28 02:46:17 +00:00
[ "json", ["string", "int"] ],
2016-06-28 04:00:44 +00:00
[ "json", ["json"]],
2012-06-23 03:43:42 +00:00
]