mirror of
https://github.com/haiwen/libsearpc.git
synced 2025-04-30 11:33:20 +00:00
13 lines
263 B
Python
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"]],
|
|
]
|