コード例 #1
0
ファイル: __init__.py プロジェクト: sdelements/sdetools
class Command(BaseCommand):
    help = 'TFS <-> SDE sync utility.'

    def configure(self):
        alm_api = TFSAPIBase(self.config)
        self.tfs = TFSConnector(self.config, alm_api)

    def handle(self):
        self.tfs.initialize()
        self.tfs.synchronize()
        return True
コード例 #2
0
ファイル: __init__.py プロジェクト: sdelements/sdetools
 def configure(self):
     alm_api = TFSAPIBase(self.config)
     self.tfs = TFSConnector(self.config, alm_api)