blob: 0d362b26c195419d28544e31422b1d951a20beb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
"""\
This module provides a get_proxy() function, which should be used to access
the afe RPC server.
"""
__author__ = 'showard@google.com (Steve Howard)'
from json_rpc import proxy
def get_proxy(*args, **kwargs):
return proxy.ServiceProxy(*args, **kwargs)
|