blob: 1707e044fd632a035db5f1306ba52b5cc79427e6 [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):
jadmanski0afbb632008-06-06 21:10:57 +000011 return proxy.ServiceProxy(*args, **kwargs)