Rev 1207 | Blame | Compare with Previous | Last modification | View Log | RSS feed
'''Updated on 31-Aug-2011@author: rajveer'''from shop2020.thriftpy.logistics.LogisticsService import Clientfrom shop2020.clients.GenericClient import GenericClientclass LogisticsClient(GenericClient):def __init__(self):GenericClient.__init__(self, "logistics_service_server_host", "logistics_service_server_port")self.__start__()def __start__(self):self.client = Client(self.protocol)def get_client(self):return self.client