package com.bcxin.autodownloadupload.service; /** * description: 重试方法服务 * author: linchunpeng * date: 2023-04-19 9:26 */ public interface RetryableService { /** * description: 下载拉取结果的zip * author: linchunpeng * date: 2023-04-19 9:27 */ String downloadPullResult(String pullResultZipUrl, String savePath) throws Exception; }