mirror of
https://github.com/haiwen/libsearpc.git
synced 2025-04-28 02:30:08 +00:00
10 lines
169 B
Python
10 lines
169 B
Python
"""
|
|
Define RPC functions needed to generate
|
|
"""
|
|
|
|
# [ <ret-type>, [<arg_types>] ]
|
|
func_table = [
|
|
[ "int", ["string"] ],
|
|
[ "objlist", ["int", "int", "string"] ]
|
|
]
|