Rev 3124 | Blame | Compare with Previous | Last modification | View Log | RSS feed
'''Updated on 31-Aug-2011@author: rajveer'''from shop2020.thriftpy.model.v1.user.PromotionService import Clientfrom shop2020.clients.GenericClient import GenericClientclass PromotionClient(GenericClient):def __init__(self):GenericClient.__init__(self, "promotion_service_server_host", "promotion_service_server_port")self.__start__()def __start__(self):self.client = Client(self.protocol)def get_client(self):return self.client