blob: 0d362b26c195419d28544e31422b1d951a20beb9 [file] [log] [blame]
mblighe8819cd2008-02-15 16:48:40 +00001"""\
2This module provides a get_proxy() function, which should be used to access
3the afe RPC server.
4"""
5
6__author__ = 'showard@google.com (Steve Howard)'
7
mblighe8819cd2008-02-15 16:48:40 +00008from json_rpc import proxy
9
10def get_proxy(*args, **kwargs):
11 return proxy.ServiceProxy(*args, **kwargs)