1
0
mirror of https://github.com/haiwen/libsearpc.git synced 2025-09-03 13:54:57 +00:00

Make check pass.

This commit is contained in:
gnehzuil
2012-06-23 11:43:42 +08:00
parent f2b0236d40
commit c91f143fdc
3 changed files with 37 additions and 3 deletions

10
tests/rpc_table.py Normal file
View File

@@ -0,0 +1,10 @@
"""
Define RPC functions needed to generate
"""
# [ <ret-type>, [<arg_types>] ]
func_table = [
[ "string", ["string", "int"] ],
[ "object", ["string"] ],
[ "objlist", ["string", "int"] ],
]