mbligh | e8819cd | 2008-02-15 16:48:40 +0000 | [diff] [blame] | 1 | """\ |
2 | This module provides a get_proxy() function, which should be used to access | ||||
3 | the afe RPC server. | ||||
4 | """ | ||||
5 | |||||
6 | __author__ = 'showard@google.com (Steve Howard)' | ||||
7 | |||||
mbligh | e8819cd | 2008-02-15 16:48:40 +0000 | [diff] [blame] | 8 | from json_rpc import proxy |
9 | |||||
10 | def get_proxy(*args, **kwargs): | ||||
jadmanski | 0afbb63 | 2008-06-06 21:10:57 +0000 | [diff] [blame^] | 11 | return proxy.ServiceProxy(*args, **kwargs) |