mirror of
https://github.com/haiwen/libsearpc.git
synced 2025-07-18 23:36:25 +00:00
11 lines
203 B
Python
11 lines
203 B
Python
|
"""
|
||
|
Define RPC functions needed to generate
|
||
|
"""
|
||
|
|
||
|
# [ <ret-type>, [<arg_types>] ]
|
||
|
func_table = [
|
||
|
[ "string", ["string", "int"] ],
|
||
|
[ "object", ["string"] ],
|
||
|
[ "objlist", ["string", "int"] ],
|
||
|
]
|